/* Custom Styles for IAIS Registration */
:root {
    --iais-blue: #0056b3;
    --iais-light: #e9f0f8;
}

/* Body and Typography */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f3f6ff;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: var(--iais-blue);
}

/* Cards */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-header {
    background-color: var(--iais-blue);
    color: black;
    border-radius: 10px 10px 0 0 !important;
    padding: 1.5rem;
}

/* Forms */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--iais-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.form-check-input:checked {
    background-color: var(--iais-blue);
    border-color: var(--iais-blue);
}

/* Buttons */
.btn-primary {
    background-color: var(--iais-blue);
    border-color: var(--iais-blue);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Alerts */
.alert {
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-header h4 {
        font-size: 1.25rem;
    }
}

/* Custom Registration Components */
#committee-section, #meal-section, #dietary-section {
    background-color: var(--iais-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

#fee-display {
    border-left: 4px solid var(--iais-blue);
}

/* Loading Spinner (for payment processing) */
.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2em;
}
/* Custom Colors */
.bg-purple {
    background-color: #6f42c1 !important;
}
.text-purple {
    color: #6f42c1 !important;
}
.bg-purple-light {
    background-color: #e9e1fa;
}
.btn-purple {
    background-color: #6f42c1;
    border-color: #6f42c1;
    color: white;
}
.btn-purple:hover {
    background-color: #5e35b1;
    border-color: #5e35b1;
}

/* Card Enhancements */
.hover-shadow {
    transition: transform 0.2s, box-shadow 0.2s;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Badges */
.badge {
    padding: 0.35em 0.65em;
    font-weight: 500;
}

/* Height utilities */
.h-100 {
    height: 100%;
}

.card-header{
    color:#004494 !important;
}

 .participant-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px 15px 0 0;
            padding: 30px;
        }
        .info-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .meeting-item {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            border-left: 4px solid #667eea;
        }
        .restricted-meeting {
            border-left-color: #dc3545;
            background: #fff5f5;
        }
        .status-badge {
            font-size: 1.1rem;
            padding: 8px 15px;
        }
        .print-section {
            background: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            padding: 20px;
        }






        