/* Verify Account CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
      :root {
        --evsu-maroon: #8b0000;
        --evsu-gold: #ffd700;
      }
      body {
        font-family: "Poppins", sans-serif;
        background-color: #f8f9fa;
      }
      .evsu-maroon {
        background-color: var(--evsu-maroon);
      }
      .evsu-gold {
        background-color: var(--evsu-gold);
      }
      .text-evsu-maroon {
        color: var(--evsu-maroon);
      }
      .text-evsu-gold {
        color: var(--evsu-gold);
      }
      .border-evsu-maroon {
        border-color: var(--evsu-maroon);
      }
      .border-evsu-gold {
        border-color: var(--evsu-gold);
      }
      .btn-primary {
        background: var(--evsu-maroon);
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .btn-primary:hover {
        background: #6b0000;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(139, 0, 0, 0.2);
      }
      .btn-secondary {
        background: white;
        color: var(--evsu-maroon);
        border: 1px solid var(--evsu-maroon);
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .btn-secondary:hover {
        background: rgba(139, 0, 0, 0.05);
      }
      .verification-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
      }
      .verification-card {
        background-color: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }
      .verification-header {
        background: linear-gradient(135deg, var(--evsu-maroon), #5a0000);
        padding: 20px;
        color: white;
      }
      .step-indicator {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        position: relative;
      }
      .step-indicator::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #e5e7eb;
        z-index: 1;
      }
      .step {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .step-circle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: white;
        border: 2px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 8px;
        transition: all 0.3s;
      }
      .step.active .step-circle {
        background-color: var(--evsu-maroon);
        border-color: var(--evsu-maroon);
        color: white;
      }
      .step.completed .step-circle {
        background-color: #10b981;
        border-color: #10b981;
        color: white;
      }
      .step-title {
        font-size: 14px;
        color: #6b7280;
        transition: all 0.3s;
        text-align: center;
      }
      @media (max-width: 640px) {
        .step-title {
          font-size: 10px;
        }
      }
      .step.active .step-title {
        color: var(--evsu-maroon);
        font-weight: 600;
      }
      .step.completed .step-title {
        color: #10b981;
        font-weight: 600;
      }
      .verification-form {
        padding: 20px;
      }
      @media (min-width: 768px) {
        .verification-form {
          padding: 30px;
        }
      }
      .form-step {
        display: none;
      }
      .form-step.active {
        display: block;
      }
      .upload-area {
        border: 2px dashed #d1d5db;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
      @media (min-width: 768px) {
        .upload-area {
          padding: 30px;
        }
      }
      .upload-area:hover {
        border-color: var(--evsu-maroon);
        background-color: rgba(139, 0, 0, 0.02);
      }
      .upload-area input[type="file"] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
      }
      .preview-container {
        margin-top: 20px;
        display: none;
      }
      .preview-image {
        max-width: 100%;
        max-height: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      .selfie-container {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }
      .selfie-video {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      .selfie-canvas {
        display: none;
      }
      .selfie-controls {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      .success-animation {
        text-align: center;
        padding: 40px 0;
      }
      .success-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #10b981;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        animation: scale-up 0.5s ease-out;
      }
      @keyframes scale-up {
        0% {
          transform: scale(0);
        }
        70% {
          transform: scale(1.1);
        }
        100% {
          transform: scale(1);
        }
      }
      .checkmark {
        width: 32px;
        height: 32px;
        display: inline-block;
        position: relative;
      }
      .checkmark:after {
        content: "";
        position: absolute;
        left: 8px;
        top: 13px;
        width: 12px;
        height: 6px;
        border-left: 3px solid white;
        border-bottom: 3px solid white;
        transform: rotate(-45deg);
      }
      .version-badge {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--evsu-maroon);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 1000;
      }
      /* Mobile menu */
      .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        z-index: 50;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
      }
      .mobile-menu.active {
        transform: translateX(0);
      }
      .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
      }
      .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .mobile-menu-link {
        font-size: 18px;
        font-weight: 500;
        color: #1f2937;
        text-decoration: none;
      }
      .mobile-menu-link.active {
        color: var(--evsu-maroon);
      }
      /* Responsive buttons */
      @media (max-width: 640px) {
        .btn-primary,
        .btn-secondary {
          padding: 8px 16px;
          font-size: 14px;
        }
        .step-controls {
          flex-direction: column;
          gap: 10px;
        }
        .step-controls button {
          width: 100%;
        }
      }
      /* Upload a Selfie Modal Styles */
#upload-selfie-modal {
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

#upload-selfie-modal .modal-content,
#upload-selfie-modal > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 24px 20px 20px 20px;
  max-width: 350px;
  width: 90vw;
  position: relative;
  animation: modal-pop 0.2s;
}

@keyframes modal-pop {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

#upload-selfie-modal h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--evsu-maroon);
  text-align: center;
}

#upload-selfie-modal input[type="file"] {
  display: block;
  margin: 0 auto 10px auto;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
  background: #f9fafb;
  font-size: 0.95rem;
}

#modal-selfie-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

#modal-selfie-preview {
  max-width: 120px;
  max-height: 120px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
}

#upload-selfie-modal .modal-actions,
#upload-selfie-modal .flex {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

#upload-selfie-modal button {
  min-width: 0;
  flex: 1 1 0;
  margin: 0;
}

#upload-selfie-modal .btn-primary,
#upload-selfie-modal .btn-secondary {
  font-size: 1rem;
  padding: 8px 0;
}

#upload-selfie-modal .btn-secondary {
  border: 1px solid var(--evsu-maroon);
  background: #fff;
  color: var(--evsu-maroon);
}

#upload-selfie-modal .btn-secondary:hover {
  background: rgba(139,0,0,0.05);
}

#upload-selfie-modal .btn-primary {
  background: var(--evsu-maroon);
  color: #fff;
}

#upload-selfie-modal .btn-primary:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}

#upload-selfie-modal .btn-secondary:disabled {
  color: #aaa;
  border-color: #eee;
  cursor: not-allowed;
}

#upload-selfie-modal .text-xs {
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

#close-upload-selfie-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 480px) {
  #upload-selfie-modal .modal-content,
  #upload-selfie-modal > div {
    max-width: 98vw;
    padding: 14px 6vw 16px 6vw;
  }
  #modal-selfie-preview {
    max-width: 90px;
    max-height: 90px;
  }
  #upload-selfie-modal h3 {
    font-size: 1rem;
  }
  #upload-selfie-modal .btn-primary,
  #upload-selfie-modal .btn-secondary {
    font-size: 0.95rem;
    padding: 7px 0;
  }
}