/* Force Desktop Mode - Override All Responsive Behavior */
/* This CSS forces all pages to display in desktop mode on all devices */

/* Force minimum body width to ensure full zoom out */
body {
    min-width: 1200px !important;
    width: auto !important;
}

@media screen and (max-width: 1199px) {
    /* Force container widths to desktop size */
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px !important;
        width: 1200px !important;
        margin: 0 auto !important;
    }
    
    /* Override Bootstrap responsive column behavior */
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
    .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
        flex: none !important;
        max-width: none !important;
        width: auto !important;
    }
    
    /* Force desktop column widths */
    .col-lg-1 { width: 8.33333333% !important; }
    .col-lg-2 { width: 16.66666667% !important; }
    .col-lg-3 { width: 25% !important; }
    .col-lg-4 { width: 33.33333333% !important; }
    .col-lg-5 { width: 41.66666667% !important; }
    .col-lg-6 { width: 50% !important; }
    .col-lg-7 { width: 58.33333333% !important; }
    .col-lg-8 { width: 66.66666667% !important; }
    .col-lg-9 { width: 75% !important; }
    .col-lg-10 { width: 83.33333333% !important; }
    .col-lg-11 { width: 91.66666667% !important; }
    .col-lg-12 { width: 100% !important; }
    
    /* Also apply to md columns for consistency */
    .col-md-1 { width: 8.33333333% !important; }
    .col-md-2 { width: 16.66666667% !important; }
    .col-md-3 { width: 25% !important; }
    .col-md-4 { width: 33.33333333% !important; }
    .col-md-5 { width: 41.66666667% !important; }
    .col-md-6 { width: 50% !important; }
    .col-md-7 { width: 58.33333333% !important; }
    .col-md-8 { width: 66.66666667% !important; }
    .col-md-9 { width: 75% !important; }
    .col-md-10 { width: 83.33333333% !important; }
    .col-md-11 { width: 91.66666667% !important; }
    .col-md-12 { width: 100% !important; }
    
    /* Prevent responsive display changes */
    .d-lg-block, .d-xl-block, .d-xxl-block { display: block !important; }
    .d-lg-inline, .d-xl-inline, .d-xxl-inline { display: inline !important; }
    .d-lg-inline-block, .d-xl-inline-block, .d-xxl-inline-block { display: inline-block !important; }
    .d-lg-flex, .d-xl-flex, .d-xxl-flex { display: flex !important; }
    
    /* Override mobile hiding */
    .d-md-none, .d-sm-none { display: block !important; }
    
    /* Force desktop navigation behavior */
    .navbar-expand-lg .navbar-nav { flex-direction: row !important; }
    .navbar-expand-lg .navbar-nav .nav-link { padding-right: 0.5rem !important; padding-left: 0.5rem !important; }
    .navbar-expand-lg .navbar-toggler { display: none !important; }
    .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto !important; }
    
    /* Force desktop card layouts */
    .card-deck, .card-group { display: flex !important; flex-flow: row wrap !important; }
    
    /* Prevent responsive text size changes */
    .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
        font-size: inherit !important;
    }
    
    /* Force desktop button sizes */
    .btn-lg, .btn, .btn-sm { 
        padding: 0.5rem 1rem !important;
        font-size: 1rem !important;
    }
    
    /* Force desktop tool circle sizes and prevent stretching */
    .tool-circle {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }
    
    /* Force desktop tool container layout */
    .tools-container {
        width: auto !important;
        overflow: visible !important;
    }
    
    .tools-container .d-flex {
        min-width: auto !important;
        flex-wrap: nowrap !important;
        justify-content: space-around !important;
    }
    
    /* Prevent responsive margin/padding changes */
    .m-1, .m-2, .m-3, .m-4, .m-5,
    .mt-1, .mt-2, .mt-3, .mt-4, .mt-5,
    .mb-1, .mb-2, .mb-3, .mb-4, .mb-5,
    .ml-1, .ml-2, .ml-3, .ml-4, .ml-5,
    .mr-1, .mr-2, .mr-3, .mr-4, .mr-5,
    .mx-1, .mx-2, .mx-3, .mx-4, .mx-5,
    .my-1, .my-2, .my-3, .my-4, .my-5,
    .p-1, .p-2, .p-3, .p-4, .p-5,
    .pt-1, .pt-2, .pt-3, .pt-4, .pt-5,
    .pb-1, .pb-2, .pb-3, .pb-4, .pb-5,
    .pl-1, .pl-2, .pl-3, .pl-4, .pl-5,
    .pr-1, .pr-2, .pr-3, .pr-4, .pr-5,
    .px-1, .px-2, .px-3, .px-4, .px-5,
    .py-1, .py-2, .py-3, .py-4, .py-5 {
        margin: inherit !important;
        padding: inherit !important;
    }
    
    /* Force desktop table behavior */
    .table-responsive { overflow-x: visible !important; }
    
    /* Force desktop form layouts */
    .form-row { display: flex !important; flex-wrap: wrap !important; }
    
    /* Ensure minimum body width */
    body { min-width: 1200px !important; }
    
    /* Force desktop sidebar behavior */
    .sidebar, .offcanvas { 
        position: relative !important;
        transform: none !important;
        display: block !important;
    }
    
    /* Override any mobile-specific styles */
    .mobile-only { display: none !important; }
    .desktop-only { display: block !important; }
}

/* Additional overrides for very small screens */
@media screen and (max-width: 767px) {
    /* Force horizontal scrolling instead of responsive stacking */
    .row { 
        flex-wrap: nowrap !important;
        min-width: 1200px !important;
    }
    
    /* Ensure all content maintains desktop layout */
    .col, .col-auto, [class*="col-"] {
        flex-shrink: 0 !important;
    }
}
