﻿/* 🔹 Customize Wheel Drawer */
#mobile-customize-overlay {
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* replace this with the next line */
    height: calc(100% - 135px); /* leaves space for footer/ad */
    background: #0b0f1a;
    flex-direction: column;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 10;
}

    #mobile-customize-overlay.show {
        display: flex;
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }




.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #00ff88;
    background: #111926;
}

.drawer-title {
    font-size: 1.2em;
    font-weight: 600;
}

.drawer-actions {
    display: flex;
    gap: 10px;
}

.neon-btn.small {
    font-size: 0.9em;
    padding: 6px 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.4em;
    color: #e5eefc;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #131b29;
    border: 1px solid #1f2b3d;
    border-radius: 10px;
}

    .panel-card:focus-within {
        border-color: #00ff88;
        box-shadow: 0 0 8px #00ff88;
    }

.panel-color {
    width: 34px;
    height: 34px;
    border: none;
    background: none;
    padding: 0;
}

.panel-text {
    flex: 0 1 55%;
    background: #0b0f1a;
    border: 1px solid #1f2b3d;
    border-radius: 6px;
    padding: 6px 8px;
    color: #e5eefc;
    font-size: 1em;
    min-width: 120px;
}


.panel-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .panel-tools button,
    .panel-tools span {
        background: none;
        border: none;
        color: #e5eefc;
        font-size: 1.7em; /* increased from 1.2em */
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.img-picker span {
    cursor: pointer;
}

.delete-panel {
    cursor: pointer;
}




.drag-handle {
    cursor: grab;
}

.drawer-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid #00ff88;
}

.text-btn {
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1em;
}
