
     body {
        background: #e9eaec;
        font-family: Arial, sans-serif;
      }

      .header-bg {
        background: #0b1a4a;
        padding: 22px 0;
        text-align: center;
        color: #fff;
      }

      .header-inner {
        max-width: 980px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 18px;
        justify-content: center;
      }

      .steps {
        max-width: 980px;
        margin: 18px auto;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
      }

      .step-pill {
        background: #fff;
        padding: 10px 16px;
        border-radius: 6px;
        color: #333;
        font-weight: 600;
      }

      .step-pill.active {
        background: #0b1a4a;
        color: #fff;
      }

      .card-wrap {
        max-width: 980px;
        margin: 16px auto;
      }

      .info-card {
        display: flex;
        gap: 18px;
        background: #fff;
        padding: 16px;
        border-radius: 8px;
        align-items: flex-start;
      }

      .info-card .meta {
        background: #eef3f8;
        padding: 12px;
        border-radius: 6px;
        width: 220px;
      }

      .section-title {
        background: #0b1a4a;
        color: #fff;
        padding: 10px 14px;
        border-radius: 6px 6px 0 0;
        font-weight: 700;
        margin-top: 30px;
      }

      .form-card {
        background: #fff;
        padding: 20px;
        border-radius: 0 0 6px 6px;
        border-top: 6px solid #0b1a4a;
      }

      .required-msg {
        color: #d9534f;
        font-size: 13px;
        display: none;
        margin-top: 6px;
      }

      .small-help {
        font-size: 13px;
        color: #666;
      }

      .btn-submit {
        background: #8cc152;
        border: none;
        padding: 12px 26px;
        color: #fff;
        border-radius: 6px;
        font-size: 18px;
      }


  /* Match Select2 with normal form-control */
  .select2-container .select2-selection--single {
      height: 40px !important;          /* Same as your input box */
      border: 1px solid #ced4da !important;
      border-radius: 6px !important;     /* Adjust if your inputs use 4px */
      padding: 6px 12px !important;
  }

  .select2-selection__rendered {
      line-height: 28px !important;      /* Fix text alignment */
  }

  .select2-selection__arrow {
      height: 38px !important;           /* Center arrow */
  }


/*---------------------- Start Popup CSS ------------------------------------------*/

/* Overlay background */
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  /* Popup box */
  .popup-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
  }

  .popup-box h3 {
    margin-top: 0;
    color: #333;
  }

  .popup-box p {
    font-size: 15px;
    color: #555;
    margin: 10px 0 20px;
  }

  .popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .popup-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
  }

  .btn-yes {
    background-color: #007bff;
    color: white;
  }
  .btn-yes:hover {
    background-color: #0056b3;
  }

  .btn-cancel {
    background-color: #ccc;
  }
  
  .btn-cancel:hover {
    background-color: #999;
    color: white;
  }

  @keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }


  /*------------------- End Popup CSS -----------------------------*/
