/* 
* CampusUdaan - Breadcrumb Width Fix
* Ensures the breadcrumb background maintains 100% width at all dimensions
*/

/* Force the page-banner to take full width of the viewport */
.page-banner {
    width: 100vw !important;
    min-width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
}

/* Ensure the container inside maintains proper width */
.page-banner .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}

/* Fix for all screen sizes */
@media (max-width: 1400px), (max-width: 1200px), (max-width: 992px), 
       (max-width: 768px), (max-width: 576px), (max-width: 480px), 
       (max-width: 425px), (max-width: 375px), (max-width: 320px) {
    
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure page banner takes full width */
    .page-banner {
        width: 100vw !important;
        min-width: 100% !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Extra fix for very small screens */
@media (max-width: 340px) {
    .page-banner {
        width: 100vw !important;
        min-width: 100% !important;
        max-width: 100vw !important;
    }
}
