/* Reset and layout */
html, body {
    height: 100%;
    margin: 15px;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    display: flex;
    flex-direction: column;
	
}

/* Main wrapper to push footer */
.page-wrapper {
    flex: 1; /* Allows content to fill available space */
}

/* Header */
header {
    background-color: #009900; /* Green */
    color: #fff;
    text-align: center;
    padding: 20px;
}

header img {
    width: 100px;
    height: auto;
}

/* Button container */
.container {
    padding: 20px;
    text-align: center;
}

.btn {
    background-color: #ffcc00; /* Yellow */
    color: #000;
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

.btn:hover {
    background-color: #e6b800;
}

/* Table Styles */
table {
    width: 80%;
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: white;
    border: 1px solid #ddd;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

table caption {
    caption-side: top;
    text-align: center;
    font-size: 1.5em;
    color: green;
    padding: 0.5em;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border: 1px solid #555;
}

thead {
    background-color: #f4f4f4;
    font-weight: bold;
}

tbody tr:nth-child(odd) {
    background-color: #ccffcc; /* light green */
}

tbody tr:nth-child(even) {
    background-color: #e6ffe6; /* lighter green */
}

tbody tr:hover {
    background-color: #fff000; /* yellow highlight */
    color: black;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: auto; /* This pushes the footer to the bottom */
}

/* Button links */
.btn, .button {
    background-color: #ffcc00; /* Yellow */
    color: #000;
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
}

.btn:hover, .button:hover {
    background-color: #e6b800;
}

/* Final action button style */
.button {
    background-color: green;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    font-family: monospace;
    color: yellow;
    padding: 20px;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}

.button-wrapper {
    text-align: center;
    margin-top: 20px;
}
