/* Frysfilter-formuläret */
#frysfilter_form {
    display: flex;
    gap: 10px;
    /* mellan dropdowns */
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

/* Dropdowns */
#frysfilter_form select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Hover och focus-effekt */
#frysfilter_form select:hover,
#frysfilter_form select:focus {
    border-color: #71b6bd;
    /* blå accentfärg */
    box-shadow: 0 0 5px rgba(113, 182, 189, 0.5);
    outline: none;
}
/* Modern Frysfilter-dropdown */
#frysfilter_form select {
    appearance: none;
    /* Ta bort standardpil */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 12px;
    border: 1px solid #55898e;
    border-radius: 12px;
    background-color: #f1f7f8;
    font-size: 14px;
    color: #395b5f;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Pil till höger */
#frysfilter_form select::after {
    content: "▾";
    /* pil-symbol */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Hover/focus-effekt */
#frysfilter_form select:hover,
#frysfilter_form select:focus {
    border-color: #71b6bd;
    box-shadow: 0 2px 6px rgba(113, 182, 189, 0.3);
    outline: none;
    background-color: #e6f0f2;
}

/* Flex och spacing */
#frysfilter_form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}


