/* 
   Shared Language Selector Styles
   Can be included in any page that uses the language selector component
*/

.select-language {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.language-select {
    padding: 6px 20px 6px 6px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 100px;
    width: 100px;
    text-decoration: none;
    text-align: center;
    text-align-last: center;
    
    /* Custom dropdown arrow similar to Bootstrap */
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='16' viewBox='0 0 16 16' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M4 6l4 4 4-4H4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.language-select:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.language-select:focus {
    outline: none;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .language-select {
        width: 100%;
        max-width: 200px;
    }
}