body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.header-title {
    margin: 0;
    font-size: 24px;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.email-display {
    font-weight: bold;
    color: #333;
}

.btn {
    padding: 8px 16px;
    justify-content: center;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3;
}

.container {
    display: flex;
    justify-content: center; /* Centers the columns horizontally */
    flex-wrap: wrap; /* Allows stacking on narrow screens */
    gap: 25px; /* Adds space between columns when side by side */
    max-width: 1000px; /* Optional: Limits container width */
    margin: 0 auto; /* Centers the container itself */
}

.column-left {
    justify-items: right;
    width: 45%; /* Slightly less than 48% to fit with gap */
    min-width: 300px; /* Ensures columns don’t shrink too much */
}

.column-right {
    justify-items: left;
    width: 45%; /* Slightly less than 48% to fit with gap */
    min-width: 300px; /* Ensures columns don’t shrink too much */
}

/* Stack columns on narrow screens */
@media (max-width: 730px) {

    .header-container {
        flex-direction: column;
    }

    .container {
        flex-direction: column; /* Stacks vertically */
        margin-left: 10px
    }

    .column-left, .column-right {
        justify-items: left;
        width: 100%; /* Full width when stacked */
        margin-bottom: 20px; /* Space between stacked columns */
    }
}

.middle-line {
    border: 1px solid #ccc;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px 5px 15px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}

.footer-text {
    font-weight: bold;
    color: #555;
}

.loading {
    color: #007bff;
    font-style: italic;
    margin-top: 10px;
}

.error {
    color: red;
    margin-top: 10px;
}

.date-help-section {
    margin-top: 30px;
}

.date-help-text {
    margin: 0 0 10px 0;
    font-weight: bold;
    color: #555;
}

.date-help-subtext {
    max-width: 400px;
    font-size: 0.875em;
    color: #555;
}

.date-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
}

li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
