.error-message{
    display: none;
    margin-top: .25rem;
    background-color: #f9e4e8;
    color: #e04562;
    font-size: 12px;
    font-family: inherit;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 7px;
    width: -webkit-fill-available;
    animation: fadeIn .3s 
    ease-out;
 }

 /* Wrapper card */
.applicant-card {
    border: 2px solid var(--uketa-blue);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 0;
    background: #f8f9ff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Add More Title */
.addMoreApplicants {
    cursor: pointer;
    background: #007bff;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 250px;
    margin: 10px auto;
    transition: 0.3s;
}

.addMoreApplicants:hover {
    background: #0056b3;
}

/* Remove Button */
.removeMoreApplicant {
    margin-top: 26px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 1px 25px;
    border-radius: 5px;
    height: 45px;
}

/* Form label styling */
.guide-form-label {
    font-weight: 600;
}

/* Buttons */
.btn-add {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
}
.btn-add:hover {
    background: #1e7e34;
}

.calendar-icon{
  margin-left: -12px;
}


.flatpickr-year-dropdown {
    margin-left: 8px;
    padding: 4px;
    height: 30px;
    font-size: 14px;
}



/*---------------------- 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 -----------------------------*/