/* Presidential Innovation Fair - Registration Form Styles */

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2c6bb3;
    --accent-color: #d4af37;
    --success-color: #28a745;
    --error-color: #dc3545;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #dddddd;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

/* ===== Container ===== */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* ===== Header ===== */
header {
    background: linear-gradient(180deg, #0a2540 0%, #1a4d8f 50%, #2c6bb3 100%);
    color: var(--white);
    padding: 15px 30px 40px 30px;
    border-bottom: 6px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--accent-color) 80%, 
        transparent 100%);
    z-index: 2;
}

.flag-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.25;
    z-index: 0;
    overflow: hidden;
}

.flag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0px);
}

.ministry-name {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-logo-left {
    order: 1;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    border: 4px solid var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 
                inset 0 1px 3px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-logo-left:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.header-text {
    text-align: center;
    order: 2;
    flex: 1;
}

.header-logo-right {
    order: 3;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    border: 4px solid var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 
                inset 0 1px 3px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-logo-right:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.event-date {
    margin: 12px 0;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

header h2 {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.5px;
    margin-top: 10px;
    font-style: italic;
}

/* ===== Instruction Text ===== */
.instruction-text {
    background-color: #e8f4f8;
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 0;
    text-align: center;
}

.instruction-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Form Sections ===== */
#registrationSection,
#qrCodeSection {
    padding: 40px;
}

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--error-color);
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select {
    width: 100%;
    padding: 12px 16px;
    border: 3px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 143, 0.1);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
select:hover {
    border-color: var(--secondary-color);
}

input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Button Styles ===== */
button {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

button[type="submit"],
#printBtn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    width: 100%;
    box-shadow: var(--shadow);
}

button[type="submit"]:hover,
#printBtn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

button[type="submit"]:active,
#printBtn:active {
    transform: translateY(0);
}

button[type="submit"]:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

#newRegistrationBtn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 100%;
    margin-top: 12px;
}

#newRegistrationBtn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Error Messages ===== */
.error-container {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-left: 4px solid var(--error-color);
    color: #721c24;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.error-container ul {
    margin-left: 20px;
    margin-top: 8px;
}

.error-container li {
    margin-bottom: 4px;
}

/* ===== Success Message ===== */
.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-left: 4px solid var(--success-color);
    color: #155724;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
    text-align: center;
}

.success-message h2 {
    color: var(--success-color);
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.success-message p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.registration-id {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 16px;
}

.registration-id span {
    font-family: 'Courier New', monospace;
    background: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* ===== QR Code Section ===== */
.qr-code-container {
    text-align: center;
    padding: 32px;
    background: var(--background-light);
    border-radius: 8px;
    margin-bottom: 24px;
}

.qr-code-container h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

#qrCodeImage {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 4px solid var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.qr-code-container p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Security Notice ===== */
.security-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    margin: 20px 30px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.notice-icon {
    font-size: 24px;
}

.notice-header h3 {
    color: #856404;
    margin: 0;
    font-size: 1.2rem;
}

.notice-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
}

.notice-content li:before {
    content: "🔒";
    position: absolute;
    left: 0;
    top: 8px;
}

.notice-content strong {
    color: #533f03;
    font-weight: 600;
}

/* ===== Instructions Box ===== */
.instructions-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 8px;
    margin: 20px 30px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.instructions-box h3 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid #2196f3;
    padding-bottom: 8px;
}

.instructions-box ol {
    margin: 0;
    padding-left: 25px;
    color: #1565c0;
}

.instructions-box li {
    padding: 6px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.instructions-box strong {
    color: #0d47a1;
    font-weight: 600;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #2196f3;
}

/* ===== Action Buttons ===== */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== Print Styles ===== */
@media print {
    body {
        background: var(--white);
        padding: 0;
    }

    .container {
        box-shadow: none;
        max-width: 100%;
    }

    header,
    #registrationSection,
    .action-buttons {
        display: none;
    }

    #qrCodeSection {
        display: block !important;
        padding: 20px;
    }

    .success-message,
    .qr-code-container,
    .security-notice,
    .instructions-box {
        page-break-inside: avoid;
    }

    .security-notice {
        background: #fff3cd !important;
        border: 2px solid #ffc107 !important;
    }

    .instructions-box {
        background: #e3f2fd !important;
        border: 2px solid #2196f3 !important;
    }
}

/* ===== Responsive Design: Mobile (320px - 767px) ===== */
@media screen and (max-width: 767px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 8px;
    }

    header {
        padding: 12px 15px 25px 15px;
    }

    .ministry-name {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .header-logo {
        width: 90px;
        height: 90px;
    }

    .header-logo-left {
        order: 1;
    }

    .header-text {
        order: 2;
    }

    .header-logo-right {
        order: 3;
    }

    header h1 {
        font-size: 1.6rem;
    }

    .event-date {
        font-size: 0.95rem;
        padding: 6px 16px;
    }

    header h2 {
        font-size: 1rem;
    }

    .instruction-text {
        padding: 15px 20px;
    }

    .instruction-text p {
        font-size: 0.9rem;
    }

    #registrationSection,
    #qrCodeSection {
        padding: 20px 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        font-size: 0.9rem;
    }

    input[type="text"],
    input[type="file"],
    select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .success-message {
        padding: 16px;
    }

    .success-message h2 {
        font-size: 1.4rem;
    }

    .registration-id {
        font-size: 1rem;
    }

    .qr-code-container {
        padding: 20px 15px;
    }

    .qr-code-container h3 {
        font-size: 1.25rem;
    }

    .security-notice,
    .instructions-box {
        margin: 15px;
        padding: 15px;
    }

    .notice-header h3,
    .instructions-box h3 {
        font-size: 1rem;
    }

    .notice-content li,
    .instructions-box li {
        font-size: 0.85rem;
    }

    .notice-icon {
        font-size: 20px;
    }

    #qrCodeImage {
        max-width: 250px;
    }
}

/* ===== Responsive Design: Tablet (768px - 1023px) ===== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        padding: 15px;
    }

    .container {
        max-width: 700px;
    }

    header {
        padding: 15px 25px 30px 25px;
    }

    .ministry-name {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
        margin-bottom: 22px;
        padding-bottom: 13px;
    }

    .header-logo {
        width: 110px;
        height: 110px;
    }

    header h1 {
        font-size: 1.9rem;
    }

    .event-date {
        font-size: 1rem;
        padding: 7px 18px;
    }

    header h2 {
        font-size: 1.1rem;
    }

    #registrationSection,
    #qrCodeSection {
        padding: 30px 25px;
    }

    #qrCodeImage {
        max-width: 280px;
    }
}

/* ===== Responsive Design: Desktop (1024px+) ===== */
@media screen and (min-width: 1024px) {
    body {
        padding: 30px;
    }

    .action-buttons {
        flex-direction: row;
    }

    #printBtn,
    #newRegistrationBtn {
        width: auto;
        flex: 1;
        margin-top: 0;
    }

    /* Hover effects for desktop */
    .form-group {
        transition: transform 0.2s ease;
    }

    input[type="text"]:focus,
    select:focus {
        transform: translateY(-1px);
    }
}

/* ===== Accessibility Enhancements ===== */
*:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

button:focus-visible {
    outline-color: var(--white);
}

/* ===== Animation for form field transitions ===== */
.category-field {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Loading State ===== */
button[type="submit"]:disabled::after {
    content: "...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: "";
    }
    40% {
        content: ".";
    }
    60% {
        content: "..";
    }
    80%, 100% {
        content: "...";
    }
}

/* ===== Email Notification ===== */
.email-notification {
    background: linear-gradient(135deg, #d1f2eb 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 8px;
    margin: 0 30px 20px 30px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.email-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.email-message {
    flex: 1;
}

.email-message strong {
    color: #065f46;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.email-message p {
    color: #047857;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Mobile responsive for email notification */
@media screen and (max-width: 767px) {
    .email-notification {
        margin: 0 15px 15px 15px;
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .email-icon {
        font-size: 28px;
    }

    .email-message strong {
        font-size: 1rem;
    }

    .email-message p {
        font-size: 0.85rem;
    }
}

/* Print styles for email notification */
@media print {
    .email-notification {
        background: #d1f2eb !important;
        border: 2px solid #10b981 !important;
    }
}
/* ===== Plenary Registration Section ===== */
.plenary-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 2px solid #4a90e2;
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.plenary-header h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.plenary-notice {
    color: #dc2626;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border-left: 4px solid #4a90e2;
}

.plenary-notice strong {
    color: #dc2626;
    font-weight: 700;
}

.plenary-checkbox {
    margin-top: 16px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    position: relative;
}

.checkbox-container:hover {
    background-color: rgba(74, 144, 226, 0.1);
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

/* ===== QR Codes Container ===== */
.qr-codes-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qr-code-container {
    text-align: center;
    padding: 32px;
    background: var(--background-light);
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.qr-code-container:first-child {
    border-color: #4a90e2;
}

.qr-code-container:last-child {
    border-color: #dc2626;
}

#plenaryQrCodeImage {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 4px solid var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

/* Mobile responsive for plenary section */
@media screen and (max-width: 767px) {
    .plenary-section {
        padding: 16px;
        margin: 20px 0;
    }

    .plenary-header h3 {
        font-size: 1.1rem;
    }

    .plenary-notice {
        font-size: 0.85rem;
        padding: 10px;
    }

    .checkbox-container {
        padding: 10px;
    }

    .checkbox-text {
        font-size: 0.9rem;
    }

    .qr-codes-container {
        gap: 16px;
    }

    .qr-code-container {
        padding: 20px 15px;
    }

    #plenaryQrCodeImage {
        max-width: 250px;
    }
}

/* Tablet responsive for plenary section */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .qr-codes-container {
        flex-direction: row;
    }

    .qr-code-container {
        flex: 1;
    }
}

/* Desktop responsive for plenary section */
@media screen and (min-width: 1024px) {
    .qr-codes-container {
        flex-direction: row;
    }

    .qr-code-container {
        flex: 1;
    }
}

/* Print styles for plenary section */
@media print {
    .plenary-section {
        background: #f0f8ff !important;
        border: 2px solid #4a90e2 !important;
    }

    .qr-codes-container {
        flex-direction: column;
        page-break-inside: avoid;
    }
}
/
* ===== Approval-Based Success Page Styles ===== */

/* Success Icon */
.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.status-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.status-message strong {
    color: #f59e0b;
    font-weight: 600;
}

/* Approval Status Container */
.approval-status-container {
    margin: 24px 30px;
}

.status-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.status-card.pending {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.status-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.status-content h3 {
    color: #92400e;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.status-content p {
    color: #a16207;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* QR Code Note */
.qr-note {
    color: #dc2626 !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    background: rgba(254, 226, 226, 0.8);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #fca5a5;
    margin-top: 12px;
}

/* Next Steps Box */
.next-steps-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    margin: 24px 30px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.steps-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 12px;
}

.steps-icon {
    font-size: 24px;
}

.steps-header h3 {
    color: #1e40af;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.steps-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text strong {
    color: #1e40af;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.step-text p {
    color: #1e3a8a;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Info Notice (replaces security notice for approval page) */
.info-notice {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 12px;
    margin: 24px 30px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.info-notice .notice-header {
    border-bottom-color: #22c55e;
}

.info-notice .notice-header h3 {
    color: #15803d;
}

.info-notice .notice-content li {
    color: #166534;
}

.info-notice .notice-content li:before {
    content: "ℹ️";
}

.info-notice .notice-content strong {
    color: #14532d;
}

.highlight-id {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #f59e0b;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Updated Email Notification for Approval Process */
.email-notification {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    border: 2px solid #f59e0b !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2) !important;
}

.email-notification .email-message strong {
    color: #92400e !important;
}

.email-notification .email-message p {
    color: #a16207 !important;
}

/* Action Buttons Update */
#saveInfoBtn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow);
}

#saveInfoBtn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Mobile Responsive for Approval Page */
@media screen and (max-width: 767px) {
    .approval-status-container {
        margin: 16px 15px;
    }

    .status-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .status-icon {
        font-size: 28px;
    }

    .status-content h3 {
        font-size: 1.1rem;
    }

    .status-content p {
        font-size: 0.85rem;
    }

    .next-steps-box,
    .info-notice {
        margin: 16px 15px;
        padding: 16px;
    }

    .steps-header h3 {
        font-size: 1.1rem;
    }

    .steps-icon {
        font-size: 20px;
    }

    .step {
        gap: 12px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .step-text strong {
        font-size: 0.9rem;
    }

    .step-text p {
        font-size: 0.8rem;
    }

    .success-icon {
        font-size: 40px;
    }

    .qr-note {
        font-size: 0.8rem !important;
        padding: 6px 10px;
    }

    .highlight-id {
        font-size: 0.85rem;
        padding: 3px 6px;
    }
}

/* Tablet Responsive for Approval Page */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .approval-status-container {
        margin: 20px 25px;
    }

    .next-steps-box,
    .info-notice {
        margin: 20px 25px;
        padding: 20px;
    }
}

/* Print Styles for Approval Page */
@media print {
    .approval-status-container {
        margin: 15px 0;
    }

    .status-card {
        background: #fef3c7 !important;
        border: 2px solid #f59e0b !important;
    }

    .next-steps-box {
        background: #eff6ff !important;
        border: 2px solid #3b82f6 !important;
    }

    .info-notice {
        background: #f0fdf4 !important;
        border: 2px solid #22c55e !important;
    }

    .email-notification {
        background: #fef3c7 !important;
        border: 2px solid #f59e0b !important;
    }
}/* Thank 
You Message */
.thank-you-message {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 12px;
    font-style: italic;
}

/* Update action buttons for single button */
.action-buttons {
    justify-content: center;
}

#newRegistrationBtn {
    max-width: 300px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .thank-you-message {
        font-size: 1rem;
    }
}