@charset "utf-8";
/*--
	Color styles
--*/
/* Ensure the container aligns properly */

.country-code-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 300px; /* Adjust width if needed */
}

/* Dropdown Field */
#country_code {
    padding-left: 50px; /* Space for flag */
    height: 40px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Flag Inside Input */
.flag-icon {
    position: absolute;
    left: 10px; /* Adjust flag position */
    top: 50%;
    transform: translateY(-50%);
    width: 30px; /* Adjust flag size */
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background-size: cover;
}