.cities-dropdown-box {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.cities-dropdown-item {
    padding: 8px 10px;
    cursor: pointer;
}

.cities-dropdown-item:hover {
    background: #f1f1f1;
}

.cities-dropdown-count {
    padding: 5px 10px;
    font-size: 12px;
    color: #888;
    border-bottom: 1px solid #eee;
}

.cities-dropdown-item.active {
    background: #007bff;
    color: #fff;
}






/* Fix Bootstrap Input Group for flags */
/* .iti { width: 100% !important; display: block !important; } */

/* The Validation Badge */
.phone-validation-badge {
    position: absolute;
    right: 10px;
    top: 18px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    z-index: 10;
    pointer-events: none;
}

.phone-validation-badge.valid {
    background-color: #28a745; /* Green */
    display: flex;
}

.phone-validation-badge.invalid {
    background-color: #dc3545; /* Red */
    display: flex;
}

/* Adjust padding so text doesn't hit the badge */
.form-control {
    /* padding-right: 35px !important; */
}