/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    padding: 20px;
    transition: background-color 0.3s ease;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e3d49;
    margin-bottom: 20px;
}

/* Container for the content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    animation: fadeIn 1s ease-out;
}

label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: inline-block;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    border-color: #4CAF50;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    animation: fadeInTable 1s ease-out;
}

thead {
    background-color: #4CAF50;
    color: white;
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #ddd;
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out;
}

tbody td {
    border-bottom: 1px solid #ddd;
}

/* Add color animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInTable {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    input[type="text"] {
        font-size: 0.9rem;
    }

    table {
        font-size: 0.9rem;
    }
}
/* Styling for the 'Go Back' button */
#back-button {
    position: absolute;
    top: 20px;
    left: 90px;
    text-decoration: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#back-icon {
    width: 80px; /* Adjust the size as needed */
    height: 80px;
}