/* Aspek Penilaian Styles */
.aspek-form-group {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.aspek-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.aspek-header h3 {
    margin: 0;
    color: #007bff;
    font-size: 1.2rem;
}

.skor-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.aspek-divider {
    margin: 25px 0;
    border: none;
    border-top: 2px dashed #dee2e6;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

/* Aspek List Styles */
.aspek-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aspek-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
}

.aspek-item .aspek-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.content-preview {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    margin: 5px 0 15px 0;
    min-height: 50px;
}

/* TinyMCE Customization */
.tox-tinymce {
    border-radius: 4px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skor-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .aspek-form-group {
        padding: 15px;
    }
}

/* Form Sections */
.form-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.form-section h3 {
    margin-top: 0;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.form-info {
    background: white;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #007bff;
    margin-bottom: 15px;
}

/* Soal Preview */
.soal-preview {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
}

.soal-preview h4 {
    margin-top: 0;
    color: #495057;
}

.preview-text {
    max-height: 100px;
    overflow-y: auto;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    margin-top: 5px;
}

/* Status untuk dropdown */
.status-available {
    color: #28a745;
    font-weight: bold;
}

.status-used {
    color: #dc3545;
    font-style: italic;
}

/* Department Filter */
.department-filter {
    margin-bottom: 20px;
    max-width: 300px;
}

.department-filter label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Department Header dalam list */
.department-header {
    background: #007bff;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0 10px 0;
}

.department-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.department-header small {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-section {
        padding: 15px;
    }
    
    .soal-preview {
        padding: 10px;
    }
    
    .department-header {
        padding: 10px;
    }
    
    .department-header h3 {
        font-size: 1.1rem;
    }
}