/* Inkrementaalne CSS with Big Bang Gradient Animation */

/* General body styling */
body {
    font-family: 'Tahoma', sans-serif;
    background: linear-gradient(270deg, #8bc34a, #00b0b9); /* Big Bang gradient effect */
    background-size: 200% 200%;
    animation: gradientWave 36s infinite ease-in-out; /* Smooth gradient animation */
    color: #060; /* Dark green text for readability */
    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: #006400; /* Dark green for the title */
    text-align: center;
    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: #060; /* Dark green for text */
    transition: color 0.05s ease-in-out; /* Faster transition for text color */
}

/* Unordered List style */
ul {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 15px;
    border-left: 5px solid #006400; /* Dark green border */
    color: #060; /* Dark green text */
    transition: color 0.05s ease-in-out; /* Faster transition for text color */
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff; /* White table background for contrast */
}

th, td {
    border: 1px solid #006400; /* Dark green border */
    padding: 10px;
    text-align: left;
    transition: color 0.05s ease-in-out; /* Faster transition for text color */
}

th {
    background-color: #006400; /* Dark green for the header */
    color: white;
}

td {
    background: linear-gradient(270deg, #8bc34a, #00b0b9); /* Gradient for table data */
    color: white;
}

/* Back button style */
.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.back-button:hover {
    background-color: #555;
}

/* Scroll-to-top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #00b0b9; /* Teal for the scroll-to-top 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 */
}
