/* ============================================
   MOTOR MODEL FINDER – STYLING
   Pixel-perfect & thema-onafhankelijk
   ============================================ */

/* Form container */
#mmf-filter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

/* -----------------------------
   DROPDOWNS
------------------------------ */
#mmf-filter-form select {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    line-height: 1.3;
    color: #333;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

#mmf-filter-form select:disabled {
    background: #f2f2f2;
    color: #999;
    cursor: not-allowed;
}

#mmf-filter-form select:focus {
    border-color: #7acb92 !important;
    outline: none !important;
}

/* -----------------------------
   BUTTON WRAPPER
------------------------------ */
.mmf-btn-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

/* -----------------------------
   SEARCH BUTTON
------------------------------ */
#mmf_button {
    height: 44px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: #78c47a;
    color: #fff;
    transition: background 0.25s ease;
}

#mmf_button:hover {
    background: #6ab06c;
}

#mmf_button:disabled {
    background: #cfe6cf;
    cursor: not-allowed;
}

/* -----------------------------
   RESET BUTTON
------------------------------ */
#mmf_reset_btn {
    height: 44px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: #e8e8e8;
    color: #333;
    transition: background 0.25s ease;
}

#mmf_reset_btn:hover {
    background: #dcdcdc;
}

/* -----------------------------
   SMALL "no results" message
------------------------------ */
#mmf-no-results {
    color: #d63031;
    font-size: 14px;
    margin-top: -6px;
}

/* -----------------------------
   MOBILE OPTIMIZATION
------------------------------ */
@media(max-width: 480px) {

    #mmf-filter-form select,
    #mmf_button,
    #mmf_reset_btn {
        font-size: 14px;
        height: 40px;
    }
}