@charset "utf-8";
/* CSS Document */

body {
    background-color: #1c1c1c;
    color: #f1f1f1;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.header-image {
    max-width: 400px;
    height: auto;
}

.title {
    color: #41913e;
}

.form {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.label {
    margin-bottom: 10px;
    font-size: 12px;
}

.input {
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #333;
    color: #f1f1f1;
}

.button {
    background-color: #41913e;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    color: #1c1c1c;
    margin-top: 20px;
}

.button:hover {
    background-color: #888;
}

.table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin-top: 20px;
}

.table-header {
    border: 1px solid #4d4d4d;
    padding: 10px;
    text-align: center;
    background-color: #333;
    font-size: 13px;
}

.table-cell {
    border: 1px solid #4d4d4d;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.home-link {
    color: #f1f1f1;
    text-decoration: none;
    position: absolute;
    top: 10px;
    left: 10px;
}

.home-link:hover {
    color: #41913e;
}
