/* DevOps CSS with Gradient Animation and Improved Visibility */

/* General body styling */
body {
    font-family: 'Verdana', sans-serif;
    background: linear-gradient(270deg, #00b0b9, #008c8c); /* Teal gradient for DevOps theme */
    background-size: 200% 200%;
    animation: gradientWave 36s infinite ease-in-out; /* Smooth gradient animation */
    color: #dcdcdc; /* Light text color */
    margin: 20px;
    padding: 20px;
}

/* Gradient animation keyframes */
@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Header style */
h1 {
    color: #00b0b9; /* Teal accent color */
    text-align: center;
    font-size: 36px;
    transition: color 0.05s ease-in-out; /* Faster transition for text color */
}

/* Paragraphs with larger font size and increased line height */
p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly lighter text */
    transition: color 0.05s ease-in-out; /* Faster transition for text color */
}

/* Ordered List style */
ol {
    background: rgba(56, 56, 56, 0.8); /* Darker semi-transparent background to show gradient behind */
    padding: 15px 15px 15px 40px;
    border-left: 5px solid #00b0b9; /* Teal accent border */
    list-style-position: outside;
    color: #e0e0e0; /* Lighter text color for readability */
    transition: color 0.05s ease-in-out; /* Faster transition for text color */
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #444444; /* Dark gray borders */
    padding: 10px;
    text-align: left;
    transition: color 0.05s ease-in-out; /* Faster transition for text color */
}

th {
    background-color: #00b0b9; /* Teal background for header */
    color: white;
}

td {
    background: linear-gradient(270deg, #00b0b9, #008c8c); /* Gradient to match DevOps theme */
    color: #dcdcdc; /* Light text for visibility */
}

/* Back button style */
.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    background-color: #333333;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.back-button:hover {
    background-color: #555555;
}

/* Scroll-to-top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #00b0b9; /* Teal accent for scroll button */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-top:hover {
    background-color: #008c8c; /* Darker teal for hover */
}
