/* CorrectionRequestModal Styles */

/* Ensure correction modal appears above other modals */
.correction-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10003 !important;
}

.correction-modal {
    max-width: 500px;
    width: 90%;
}

.correction-header {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.correction-header h3 {
    color: white;
    margin: 0;
}

.correction-intro {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.correction-intro strong {
    color: #2c3e50;
}

.correction-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #f39c12;
}

.correction-modal .form-group {
    margin-bottom: 1rem;
}

.correction-modal .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.correction-modal textarea.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.correction-modal textarea.form-control:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
}

.correction-modal textarea.form-control::placeholder {
    color: #999;
}

.correction-modal .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.correction-modal .btn {
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.correction-modal .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
}

.correction-modal .btn-secondary:hover:not(:disabled) {
    background: #5a6268;
}

.correction-modal .btn-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
}

.correction-modal .btn-warning:hover:not(:disabled) {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-1px);
}

.correction-modal .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
