/* Mobile Modal Fixes */
@media (max-width: 950px) {
    .modal-window {
        grid-template-columns: 1fr !important;
        height: 100% !important;
        border-radius: 0 !important;
        max-width: 100% !important;
    }

    .modal-sidebar {
        display: none !important;
    }

    .modal-body {
        padding: 24px !important;
    }

    .modal-close {
        top: 15px !important;
        right: 15px !important;
        background: rgba(0, 0, 0, 0.5) !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bar-chart {
        height: 150px !important;
        /* Shorter chart on mobile to fit */
    }
}