/* /oap/public/assets/css/responsive.css */

/* Base Utilities used across the app */
.container { padding-left: 1rem; padding-right: 1rem; }
.max-w-md { max-width: 28rem; width: 100%; }
.max-w-lg { max-width: 32rem; width: 100%; }
.max-w-xl { max-width: 48rem; width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Mobile Adaptations (Tablets & Phones) */
@media (max-width: 768px) {
    .main-navbar {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-container,
    .settings-container {
        padding: 0 1rem;
        margin-top: 2rem !important;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .auth-card {
        margin: 1rem;
        width: 100%;
    }
}

/* Very small devices */
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .avatar-circle.size-256 { width: 150px; height: 150px; }
    
    .card-body {
        padding: 1rem;
    }
}