/* Dark Mode Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    max-width: 90%; /* Adjusted for smaller screens */
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem; /* Increased font size */
    color: #e0e0e0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #2c2c2c;
    color: #e0e0e0;
    font-size: 1.2rem; /* Increased font size */
}

table th, table td {
    padding: 15px; /* Increased padding */
    text-align: left;
    border: 1px solid #444;
}

table th {
    background-color: #333;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #1e1e1e;
}

table tr:hover {
    background-color: #444;
}

button {
    padding: 10px 15px; /* Increased button size */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem; /* Increased font size */
    transition: background-color 0.3s ease;
}

button:hover {
    opacity: 0.9;
}

/* Fade-out animation */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fade-out {
    animation: fadeOut 1s forwards;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem; /* Increased font size */
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem; /* Adjusted for smaller screens */
    }

    table {
        font-size: 1rem; /* Adjusted for smaller screens */
    }

    table th, table td {
        padding: 10px; /* Adjusted padding */
    }

    button {
        font-size: 0.9rem; /* Adjusted button size */
        padding: 8px 12px;
    }
}