/* General Reset */
body, h1, h2, h3, p, ul, li, a, table, td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Navigation Bar */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #007BFF;
}

    nav ul li {
        margin: 0 15px;
    }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: color 0.3s ease;
        }

            nav ul li a:hover {
                color: #FFD700;
            }

/* Headings */
h1, h2, h3 {
    color: #333;
    margin-bottom: 20px;
}

td {
    vertical-align: top; /* Align content to the top of the cell */
    padding: 10px; /* Add consistent padding */
    background-color: #f9f9f9;
}

/* Button Container */
.button-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center-align buttons horizontally */
    gap: 10px; /* Add spacing between buttons */
    margin-top: 20px; /* Add spacing above the buttons */
}
/* Sticky Footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes up the full viewport height */
    margin: 0;
}

.content {
    flex: 1; /* Allow the content to grow and take up available space */
}

footer {
    background-color: #333; /* Dark grey background */
    color: white; /* White text color */
    text-align: center; /* Center-align text */
    padding: 20px 0; /* Add vertical padding */
    font-size: 14px; /* Set a readable font size */
    line-height: 1.6; /* Improve spacing between lines */
}



    footer p {
        margin: 5px 0; /* Add spacing between paragraphs */
        font-family: Arial, Helvetica, sans-serif; /* Use a clean, readable font */
    }


/* Buttons */
.button {
    display: inline-block;
    width: 150px; /* Set a fixed width for all buttons */
    padding: 10px 0; /* Add vertical padding for better spacing */
    background-color: #6c757d; /* Neutral grey color */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

    .button:hover {
        background-color: #5a6268; /* Slightly darker grey for hover effect */
        transform: translateY(-2px); /* Add a hover effect for interactivity */
    }

    .button:active {
        transform: translateY(0); /* Reset the hover effect when clicked */
    }

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

td {
    padding: 10px;
    vertical-align: top;
}

    td img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

    footer p {
        margin: 5px 0;
    }

/* Utility Classes */
.text-center {
    text-align: center;
}

.bg-white {
    background-color: #FFFFFF;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    td {
        display: block;
        width: 100%;
    }

        td img {
            margin-bottom: 20px;
        }
}
