.schedule-selector {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fffbeb;
}

.schedule-selector h4 {
    margin-bottom: 15px;
    color: #78350f;
}

.schedule-days {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.day-selector {
    flex: 1 1 calc(14.28% - 10px);
    min-width: 100px;
}

.day-checkbox {
    display: none;
}

.day-label {
    display: block;
    text-align: center;
    padding: 10px;
    border: 2px solid #d97706;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #d97706;
    white-space: nowrap;
}

.day-checkbox:checked + .day-label {
    background-color: #d97706;
    color: white;
}

.time-slots {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    background-color: white;
}

.day-checkbox:checked ~ .time-slots {
    display: block;
}

.time-range {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.time-range label {
    min-width: 60px;
    margin-bottom: 0;
}

.time-select {
    flex: 1;
    padding: 8px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
}

.schedule-summary {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #d97706;
}

.summary-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #78350f;
}

.schedule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.schedule-tag {
    background-color: #d97706;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.remove-tag {
    margin-left: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .day-selector {
        flex: 1 1 calc(33.33% - 10px);
    }
    
    .time-range {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .time-range label {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .day-selector {
        flex: 1 1 calc(50% - 10px);
    }
}
