/* ==========================================================================
   Atom: Select
   ========================================================================== */

.saha-select-form {
    display: inline-flex;
    align-items: center;
}

.saha-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--saha-color-border, #ccc);
    border-radius: 0;
    padding: 8px 32px 8px 12px;
    font-family: var(--saha-font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--saha-color-text-primary);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    min-width: 140px;
}

.saha-select:focus {
    outline: 2px solid var(--saha-color-text-primary);
    outline-offset: 2px;
}
