/* responsive.css */
canvas {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(51, 65, 85, 0.8);
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(71, 85, 105, 1);
}

@media (max-width: 1279px) {
    .tab-content {
        padding-bottom: 2rem;
    }
    .tab-content > .glassmorphism {
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .main-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: 0 !important;
    }
    footer {
        text-align: center;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        height: auto !important;
        min-height: 0 !important;
    }
    footer div, footer p, footer ul {
        justify-content: center;
        margin-bottom: 0.5rem !important;
    }
    /* Hide desktop logos on mobile since we have the dedicated mobile header logo */
    img.logo, .navbar-brand img, .header-logo img, header img, img[src*="AiUpScale-logo"] {
        display: none !important;
    }
    img#mobile-header-logo {
        display: block !important;
    }
}