/* Dropdown container style */
  #dropdown_for_search {
    display: none; /* Hidden by default */
    max-height: 600px; /* Maximum height */
    overflow-y: auto; /* Vertical scrolling if the dropdown is long */
    overflow-x: hidden; /* Hide horizontal scrolling */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    white-space: normal; /* Text will wrap to the next line if it's long */
    word-wrap: break-word; /* Words will break if they're too long */
  }

  /* Dropdown item style */
  .dropdown-item {
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Will wrap to the next line if items don't fit */
    white-space: normal; /* Text inside dropdown will wrap */
    word-break: break-word; /* Long words will break and wrap */
  }

  /* Service badge style */
  .badge.service_id_badge {
    margin-right: 8px; /* Gap between the badge and name */
    font-size: 12px; /* Badge text size */
  }

  /* Centered "Please Wait" or loading message */
  #dropdown_for_search .text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Correct positioning for the message */
    font-weight: bold;
  }
 



.confirm-email-card{
    background:#ffffff;
    padding:40px 35px;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    max-width:420px;
    width:100%;
}

.confirm-email__header h3{
    font-size:26px;
    font-weight:600;
    margin-bottom:10px;
    color:#333;
}

.confirm-email__description{
    text-align:center;
    font-size:15px;
    color:#777;
    margin-bottom:25px;
}

.confirm-email__actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.btn-big-primary{
    background:#21c5fb;
    border:none;
    padding:12px 22px;
    border-radius:8px;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.btn-big-primary:hover{
    background:#0aaee4;
    transform:translateY(-1px);
}

.btn-big-secondary{
    background:#f3f3f3;
    border:none;
    padding:12px 22px;
    border-radius:8px;
    font-size:15px;
    font-weight:500;
    color:#333;
    transition:0.3s;
}

.btn-big-secondary:hover{
    background:#e6e6e6;
}

.modal-body .form-control{
    border-radius:6px;
    padding:10px;
    border:1px solid #ddd;
    font-size:14px;
}

.modal-body label{
    font-weight:500;
    margin-bottom:6px;
}

.alert{
    border-radius:8px;
    margin-bottom:20px;
}
  