/* General styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    height: 100%;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* Header */
header {
    background-color: #ff6600;
    padding-top: 30px;
    padding-bottom: 10px;
}

h1 {
    margin: 0;
    font-size: 2rem;
}

.menu-buttons {
    margin-top: 20px;
}

.menu-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.menu-button:hover {
    color: lightgrey;
}

/* Main content */
main {
    margin: 50px 0;
}

p {
    font-size: 1.2rem;
}

/* Call-to-action button */
.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #cc5500;
}

/* Table Styles */

.table-section {
    margin-top: 50px;
}

.table-section div {
    padding-left: 0;
}

.table-section h3 {
    text-align: left;
    margin-left: 10%;
}

table {
    width: 80%;
    margin: 10px auto;
    border-collapse: collapse;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #ff6600;
    color: white;
}

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

/* Footer */
#footer {
    background-color: #333;
    padding: 10px;
    bottom: 0;
    width: 100%;
    margin-top: auto;
}
