/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Mobile responsiveness for split-layout */
    .split-layout {
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 56px);
    }
    
    .chat-panel {
        width: 100%;
        min-width: auto;
        max-width: none;
        border-right: none;
        border-bottom: 1px solid var(--panel-border-color);
    }
    
    .side-panel {
        width: 100%;
        padding: 1rem;
    }
    
    .main-panel {
        width: 100%;
    }
    
    .results-panel {
        height: auto;
        min-height: 50vh;
    }
    
    /* Dashboard mobile adjustments */
    .dashboard-card {
        margin-bottom: 1.5rem;
    }
    
    /* Context page mobile adjustments */
    .context-form {
        padding: 1rem;
    }
    
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Notification dropdown adjustments for mobile */
    .dropdown-menu {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile devices in landscape mode */
@media (max-width: 992px) and (orientation: landscape) {
    .split-layout {
        flex-direction: row;
        height: calc(100vh - 56px);
    }
    
    .chat-panel {
        width: 40%;
        min-width: 300px;
    }
    
    .results-panel {
        height: 100%;
    }
}