﻿/* Default Wheels hard-coded entries */
#defaultWheelsMenu button {
    display: block;
    width: 180px;
    background: transparent;
    color: #7fff00;
    border: none;
    padding: 8px;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
}

    #defaultWheelsMenu button:hover {
        background: #2979ff;
        color: #fff;
    }




.dropdown {
    display: none;
    position: absolute;
    background: #000;
    border: 2px solid #2979ff;
    box-shadow: 0 0 10px #2979ff, 0 0 18px #7fff00;
    border-radius: 6px;
    padding: 8px;
    z-index: 1000;
}


    .dropdown button {
        display: block;
        /*width: 180px;*/
        background: transparent;
        color: #7fff00;
        border: none;
        padding: 8px;
        text-align: left;
        font-weight: bold;
        cursor: pointer;
    }

        .dropdown button:hover {
            background: #2979ff;
            color: #fff;
        }

.wheel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*min-width: 180px;*/ /* optional: keep it at least as wide as defaults */
}

.wheel-select {
    flex: 1;
    text-align: left;
    background: transparent;
    border: none;
    color: #7fff00;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
}

    .wheel-select:hover {
        background: #2979ff;
        color: #fff;
    }

.wheel-delete {
    background: transparent;
    border: none;
    color: #7fff00;
    font-weight: bold;
    cursor: pointer;
    padding: 8px;
    flex: 0 0 auto; /* don’t stretch */
}

    .wheel-delete:hover {
        background: none !important;
        color: #fff;
    }

/* ==========================================
   ✅ Slightly taller Settings dropdown
   ========================================== */
.settings-panel {
    max-height: 480px; /* was around 380–400 before */
    min-height: 420px;
}

.settings-tabs .tab-content {
    overflow-y: auto;
    max-height: 400px; /* allows scroll only if truly needed */
}
