:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-bg: #f8f9fa;
    --form-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.mmu-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin: 2rem auto;
    max-width: 210mm;
    min-height: 297mm;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ✅ OFFLINE SVG ICON */
.svg-icon {
    width: 22px;
    height: 22px;
    stroke: var(--secondary-color);
    stroke-width: 2;
    fill: none;
}

/* Buttons */
.btn-mmu {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
}

.photo-frame {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.photo-frame img {
    transition: transform 0.3s ease;
}

.photo-frame:hover img {
    transform: scale(1.05);
}

/* Status badges */
.status-pending { background: #fff3cd; color: #856404; padding: 5px 12px; border-radius: 20px; }
.status-approved { background: #d4edda; color: #155724; padding: 5px 12px; border-radius: 20px; }
.status-rejected { background: #f8d7da; color: #721c24; padding: 5px 12px; border-radius: 20px; }

/* Print mode */
@media print {
    body { background: white; padding: 0; }
    .form-container { box-shadow: none; margin: 0; padding: 1rem; }
    .no-print { display: none !important; }
}
