
.custom-headerQuick_site {
    position: relative; 
    z-index: 9999;
    display: inline-block;
    cursor: pointer;
    font-size: 16px; 
    margin-right: 20px; 
    height: 100%;
    display: flex;
    align-items: center; 
}

.custom-headerQuick_label {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: transparent; 
    border: none; 
    border-radius: 4px;
    transition: background-color 0.2s;
    color: #333; 
}
.custom-headerQuick_label:hover {
    background-color: rgba(0, 0, 0, 0.05); 
}

.custom-headerQuick_label img {
    width: 32px; 
    height: 24px; 
    margin-right: 8px; 
}

.custom-headerQuick_label .language {
    font-weight: bold;
    font-size: 18px; 
    margin-right: 5px; 
    color: #1E71CE; 
}

.custom-icon-arrowdown_line {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1E71CE;
}

.custom-compDropdown-panel {
    display: none; 
    position: absolute; 
    top: 100%; 
    right: 0; 
    width: 250px; 
    background-color: white; 
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 4px;
    z-index: 10000;
}
.custom-headerQuick_site:hover .custom-compDropdown-panel {
    display: block;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}
.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}
.custom-select-display img {
    width: 28px;
    height: 20px;
    margin-right: 8px;
    border: 1px solid #ddd;
    vertical-align: middle;
    margin-top: 0px;
}
.custom-select-options {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    z-index: 10;
}
.custom-select-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.custom-select-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.custom-select-option img {
    width: 28px;
    height: 20px;
    margin-right: 12px;
    border: 1px solid #ddd;
}
.custom-select-option span {
    font-weight: 500;
    font-size: 14px;
}

.custom-btn {
    width: 100%;
    padding: 10px;
    background-color: #1E73D4; 
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.2s;
    margin-top: 10px;
}
.custom-btn:hover {
    background-color: #e65c00;
}

.custom-form_label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #888; 
    font-size: 12px; 
}
