.switcher-language {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 0 0; /* reduce right spacing, no left */
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.switcher-language .switcher-label {
    display: none;
}

.switcher-language .switcher-trigger {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    /*min-width: 120px;*/
    transition: all 0.2s ease;
}

.switcher-language .switcher-trigger:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
}

.switcher-language .switcher-trigger:after {
    content: "▾";
    font-size: 10px;
    margin-left: 8px;
}

.switcher-language .switcher-dropdown {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    min-width: 130px;
    position: absolute;
    right: 0;
    z-index: 1000;
}

.switcher-language .switcher-option a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.switcher-language .switcher-option a:hover {
    background-color: #f0f0f0;
}
