/* ========================================
   RESPONSIVE GLOBAL CSS
   Applied to all pages
   ======================================== */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
}

/* Responsive Tables */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Buttons */
@media (max-width: 576px) {
    .btn {
        font-size: 0.875rem;
        padding: 8px 16px;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
