@import url('style.css');

.form-label {
    font-weight: 500;
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 4px;
}

.form-control, .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
    font-size: 13px;
}

.draft-content {
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.draft-content h6 {
    color: var(--primary);
}

.modal-content {
    border-radius: var(--border-radius);
    border: none;
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 24px;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 16px 24px;
}