/* CSS for contact */
.work-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between rows */
}

.work-schedule__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd; /* Optional divider */
    padding: 5px 0;
}

.work-schedule__day {
    flex-basis: 30%; /* Adjust this to control day width */
    /*font-weight: bold;*/
    font-size: 14px;
}

.work-schedule__hours {
    flex-basis: 70%; /* Adjust this to control hours width */
    text-align: right;
    font-size: 14px;
}

/* Optional: Add some responsiveness */
@media (max-width: 600px) {
    .work-schedule__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-schedule__hours {
        text-align: left;
        margin-top: 4px;
    }
}
