/* Form layout styles for improved UI organization */

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.form-col {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .form-col {
        flex: 0 0 100%;
    }
}

/* Ensure the form fields in the same row have consistent styling */
.form-row select, 
.form-row input {
    width: 100%;
}

/* Start/end time color classes for time entry header */
.start-time-green {
    color: #27ae60;
    font-weight: bold;
}
.end-time-red {
    color: #e74c3c;
    font-weight: bold;
}

/* Make times in today header same as h3 title */
.today-header-time {
    font-size: 2rem; /* match h3 size */
    font-weight: 700; /* bold like h3 */
    font-family: inherit;
    line-height: 1.1;
}

/* Full width for week/day toggles */
.week-toggle, .day-toggle {
    width: 100%;
    text-align: left;
    border-radius: 6px;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none;
}
.day-toggle {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: #222;
    margin-bottom: 0.3em;
}
.week-toggle {
    margin-bottom: 1em;
}

