*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.text-warning{
    color:#f09125 !important;
}

.bg-warning{
    color:#f09125 !important;
}

/* Remove blue outline and background on focus */
.form-control:focus {
    box-shadow: none !important;
    border-color: #ccc !important; /* Optional: Change border color */
    background-color: white !important; /* Ensure background remains white */
}


.selected {
    border: 2px solid #ffc107;
    background-color: #fff7e6;
}
.disabled {
    opacity: 0.6;
    pointer-events: none;
}
.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.country-selector {
    cursor: pointer;
    padding: 6px 12px;
}
.dropdown-menu {
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1000;
}
.dropdown-item {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
}
.dropdown-item:hover {
    background: #f8f9fa;
}