/* Unique dev container for language switcher */
.smm-language-switcher-dev {
    display: inline-block;
    margin-left: 12px;
    vertical-align: middle;
    position: relative;
    /* Add more custom styles as needed for separation */
}
/* Language Switcher Styles */
.smm-language-switcher {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    vertical-align: top;
}

.smm-language-switcher-button {
    background-color: #ffffff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.smm-language-switcher-button:hover {
    background-color: #005a87;
}

.smm-language-switcher-button::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.2s;
}

.smm-language-switcher-dropdown.open .smm-language-switcher-button::after {
    transform: rotate(180deg);
}

.smm-language-switcher-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.smm-language-switcher-img {
    width: 36px !important;
    height: 36px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: none;
    max-height: none;
    vertical-align: middle;
    display: inline-block;
}

.smm-language-switcher-button {
    padding: 0 !important;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smm-language-switcher-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 120px;
    z-index: 1000;
    display: none;
}

.smm-language-switcher-dropdown.open {
    display: block;
}

.smm-language-switcher-option {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.smm-language-switcher-option:hover {
    background-color: #f8f9fa;
}

.smm-language-switcher-option:last-child {
    border-bottom: none;
}