body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(34, 34, 34);
}
main {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
h1, h2, h3, h4, h5 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 5px 0px;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    align-items: center;
    align-content: center;
}
button {
    display: flex;
    color: #ffffff;
    background-color: #ffc400;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: none;
}
.container {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.button-link {
    display: flex;
    color: #ffffff;
    background-color: #ffc400;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
button:hover,
.button-link:hover {
    background-color: #ff8800;
    cursor: pointer;
}
.logo {
    margin: 10px 0px;
    width: 350px;
}
.form {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 600px;
    padding: 40px 30px;
    background-color: rgb(41, 41, 41);
    border-radius: 5px;
    margin: 30px 0px;
}
.form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    align-content: center;
}
.form-label {
    flex-basis: 25%;
    color: #ffffff;
}
.form-input {
    flex-basis: 75%;
    padding: 10px;
    border: 1px solid #555555;
    border-radius: 6px;
}
/* Table container styling for responsiveness */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

/* Base table styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: left;
}

/* Table header styling */
thead th {
    background-color: #ffc400;
    color: white;
    padding: 12px;
    border: 1px solid #ddd;
}

/* Table body styling */
tbody td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Alternating row colors */
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:nth-child(odd) {
    background-color: #fff;
}

/* Hover effect */
tbody tr:hover {
    background-color: #f1f1f1;
}

/* Zebra-stripe hover accent */
tbody tr:hover td {
    color: #333;
}

/* Footer row styling */
tfoot td {
    background-color: #f1f1f1;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #ddd;
}

