/* Fast model SELECTOR - BRANDED STYLE AUTO */
#mselbox {
    position: relative; 
    margin: 0px 0px 15px 0px; 
    box-sizing: content-box; 
    z-index: 199;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.15); /* М'якша тінь */
}

#mselcont {
    height: auto; /* Змінено для адаптивності */
    min-height: 40px;
    padding: 15px 22px;
    display: flex; /* Сучасне вирівнювання */
    flex-wrap: wrap;
    gap: 10px;
}

#mselover {
    left: 0px; top: 0px; 
    background: #ffffff url('media/loading.gif') center center no-repeat; 
    opacity: 0.7; position: absolute; display: none; z-index: 888;
}

/* Кнопки вибору */
.ms-mainlay, .ms-disabled { 
    float: none; /* Відмовляємось від float для гнучкості */
}

.ms-mainlay .ms-head { 
    color: #fff; 
    text-shadow: 0px -1px 1px rgba(0,0,0,0.3); 
    background: linear-gradient(#e31e24, #b2181d); /* Червоний градієнт */
    border: 1px solid #b2181d;
}

.ms-head {
    line-height: 40px !important; 
    vertical-align: middle !important;
    font-size: 14px; 
    font-family: Arial, sans-serif; 
    padding: 0px 20px; 
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.ms-head:hover { cursor: pointer; filter: brightness(1.1); }

/* Активна вкладка (відкрита) */
.ms-active .ms-head {
    text-shadow: none !important;
    border: 1px solid #9f9f9f;
    border-bottom: none !important;
    padding-bottom: 10px !important; 
    margin-bottom: -10px !important; 
    z-index: 778 !important;
    color: #333 !important; 
    background: #fff !important;
    border-radius: 5px 5px 0 0;
}

/* Неактивні кроки */
.ms-disabled .ms-head { 
    color: #777; 
    text-shadow: 0px 1px 0px #fff; 
    background: linear-gradient(#f0f0f0, #dcdcdc);
    border: 1px solid #ccc;
}

/* Випадаюче вікно */
.ms-sublay {
    position: absolute; 
    left: 22px; 
    top: 70px; 
    min-width: 300px; /* Для мобільних */
    max-width: 90vw;
    background: #fff; 
    padding: 18px; 
    border: 1px solid #9f9f9f; 
    display: none; 
    z-index: 777 !important; 
    border-radius: 0 5px 5px 5px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}

/* Посилання всередині (роки/моделі) */
.ms-sublay a {
    font-family: Arial; 
    font-size: 14px; 
    color: #333; 
    font-weight: bold; 
    padding: 6px 10px; 
    display: block; 
    text-decoration: none;
    border-radius: 4px;
}

.ms-sublay a:hover {
    color: #fff !important; 
    background: #e31e24; /* Підсвітка червоним */
    text-decoration: none;
}

.ms-sublay table td { padding: 4px; vertical-align: top; }

/* Адаптивність для телефонів */
@media (max-width: 768px) {
    #mselcont {
        flex-direction: column;
        padding: 10px;
    }
    .ms-head {
        width: 100%;
        text-align: center;
    }
    .ms-sublay {
        left: 5% !important;
        width: 90% !important;
        min-width: auto;
        top: auto;
    }
}