/* Custom UI Core Theme Styling Dark Blue Core */
.crm-form-container {
    background: radial-gradient(circle at top left, #0b1f3a, #08162a);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 32px 0 rgba(7, 20, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 20px auto;
}

.crm-form-container h2 {
    color: #4da3ff !important;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(77, 163, 255, 0.3);
}

.section-title {
    border-left: 4px solid #4da3ff;
    padding-left: 10px;
    font-size: 1.1rem;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    color: #4da3ff;
}

.crm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.crm-form-container label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.crm-form-container input, 
.crm-form-container select, 
.crm-form-container textarea {
    width: 100% !important;
    background: #0d213a !important;
    border: 1px solid #1e3a5f !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    color: #ffffff !important; 
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.crm-form-container input:focus, 
.crm-form-container select:focus, 
.crm-form-container textarea:focus {
    border-color: #4da3ff !important;
    box-shadow: 0 0 8px rgba(77, 163, 255, 0.5) !important;
    outline: none !important;
}

.crm-form-container input::placeholder, 
.crm-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.crm-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
    margin-top: 20px;
    width: 100%;
}

.crm-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.crm-alert {
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
}
.crm-alert-success { background: #10b981; color: white; }
.crm-alert-danger { background: #ef4444; color: white; }