/**
 * VideoWhisper Schedule Editor Styles
 */

#schedule-editor-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.schedule-entry {
    margin-bottom: 20px;
    position: relative;
}

.schedule-entry h5 {
    margin-top: 0;
    color: #2185d0;
}

.timeranges-container {
    background: #f9fafb;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.timeranges-container .ui.message {
    margin: 0;
}

.ui.buttons .toggle-day {
    min-width: 50px;
}

#json-preview {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

#validation-message {
    margin-top: 20px;
}

#validation-message ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .two.fields, .three.fields {
        flex-direction: column;
    }
    
    .two.fields > .field,
    .three.fields > .field {
        width: 100% !important;
        margin-bottom: 10px;
    }
    
    .ui.buttons {
        flex-wrap: wrap;
    }
    
    .ui.buttons .toggle-day {
        flex: 0 0 auto;
        margin: 2px;
    }
}

/* Print styles */
@media print {
    #schedule-editor-container .ui.button {
        display: none;
    }
}
