.cclt-wrapper {
    position: relative;
    display: inline-block;
}

/* Globe Icon */
.cclt-globe {
    font-size: 22px;
    cursor: pointer;
    position: relative;
}

/* Tooltip */
.cclt-tooltip {
    visibility: hidden;
    background: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    white-space: nowrap;
}

.cclt-globe:hover .cclt-tooltip {
    visibility: visible;
}

/* Dropdown */
.cclt-dropdown {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 9999;
}

.cclt-dropdown.active {
    display: block;
}

.cclt-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.cclt-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cclt-dropdown li {
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
}

.cclt-dropdown li:hover {
    background: #f3f3f3;
}

/* Google translate area */
.cclt-translate {
    margin-top: 15px;
}


/* Active Selected Country */
.cclt-dropdown li.active {
    background: #e9f2ff;
    font-weight: 600;
    border: 1px solid #0073e6;
}
.cclt-dropdown {
    overflow: visible !important;
    z-index: 99999;
}

/* GTranslate dropdown fix */
.goog-te-menu-frame,
.goog-te-menu2 {
    z-index: 999999 !important;
}

/* If using floating version */
.gtranslate_wrapper {
    z-index: -999999 !important;
}
.cclt-lang {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.cclt-lang:hover {
    background: #f2f2f2;
}

.cclt-lang img {
    width: 18px;
    height: auto;
}
.cclt-translate {
    opacity: 0;
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.gt_selector {
    opacity: 0;
    pointer-events: none;
}