/* language.css */
.action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    gap: 15px;
}

.language-select.elegant-btn {
    width: 100%;
    padding: 12px 25px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    text-align: left;
    cursor: pointer;
}

.language-select.elegant-btn:hover {
    background-color: var(--secondary-color);
}

.language-select.elegant-btn:focus {
    outline: none;
}