/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-kreq4vk7rj] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-kreq4vk7rj] {
    flex: 1;
}

.sidebar[b-kreq4vk7rj] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-kreq4vk7rj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-kreq4vk7rj]  a, .top-row[b-kreq4vk7rj]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-kreq4vk7rj]  a:hover, .top-row[b-kreq4vk7rj]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-kreq4vk7rj]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-kreq4vk7rj] {
        justify-content: space-between;
    }

    .top-row[b-kreq4vk7rj]  a, .top-row[b-kreq4vk7rj]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-kreq4vk7rj] {
        flex-direction: row;
    }

    .sidebar[b-kreq4vk7rj] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-kreq4vk7rj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-kreq4vk7rj]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-kreq4vk7rj], article[b-kreq4vk7rj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /NavMenu/NavMenu.razor.rz.scp.css */
/* ===== NAVIGATION STYLES ===== */

.sidebar-bg[b-vylkt1ukr3] {
    background-image: url('../images/sidebar.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    min-height: 100vh;
    padding: 0px;
}

.logo-wrapper[b-vylkt1ukr3] {
    margin-top: 40px;
}

.logo-circle[b-vylkt1ukr3] {
    background-color: white;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo-img[b-vylkt1ukr3] {
    width: 140px;
}

.nav-item[b-vylkt1ukr3] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-vylkt1ukr3] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-vylkt1ukr3] {
        padding-bottom: 1rem;
    }

    .nav-item[b-vylkt1ukr3]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        padding-left:0.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-vylkt1ukr3]  a.active {
            background-color: rgba(255,255,255,0.37);
            color: white;
        }

        .nav-item[b-vylkt1ukr3]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

.bi[b-vylkt1ukr3] {
    font-size: 1.4rem;
    vertical-align: middle;
    line-height: 1;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: inherit;
}

/* ===== MOBILE HAMBURGER MENU ===== */

.mobile-hamburger-btn[b-vylkt1ukr3] {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    background: #1b6ec2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px;
    width: 50px;
    height: 50px;
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

    .mobile-hamburger-btn:hover[b-vylkt1ukr3] {
        background: #0056b3;
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }

    .mobile-hamburger-btn:focus[b-vylkt1ukr3] {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    }

.hamburger-line[b-vylkt1ukr3] {
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-overlay[b-vylkt1ukr3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    backdrop-filter: blur(3px);
    display: none;
}

/* ===== MOBILE RESPONSIVE BEHAVIOR ===== */

/* Mobile screens - below 641px */
@media (max-width: 640.98px) {
    /* Show hamburger button */
    .mobile-hamburger-btn[b-vylkt1ukr3] {
        display: flex !important;
    }

    /* Show overlay when menu is open */
    .mobile-overlay[b-vylkt1ukr3] {
        display: block;
    }

    /* Hide sidebar by default */
    .sidebar[b-vylkt1ukr3] {
        width: 0 !important;
        overflow: hidden !important;
    }

    /* Mobile sidebar positioning */
    .sidebar-bg[b-vylkt1ukr3] {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    }

        /* Show sidebar when menu is open */
        .sidebar-bg.mobile-open[b-vylkt1ukr3] {
            transform: translateX(0);
        }

    /* Adjust logo spacing for mobile */
    .logo-wrapper[b-vylkt1ukr3] {
        margin-top: 80px;
    }

    /* Full width main content on mobile */
    .page main[b-vylkt1ukr3] {
        width: 100%;
        margin-left: 0;
    }
}

/* Desktop screens - 641px and up */
@media (min-width: 641px) {
    /* Hide mobile elements */
    .mobile-hamburger-btn[b-vylkt1ukr3] {
        display: none !important;
    }

    .mobile-overlay[b-vylkt1ukr3] {
        display: none !important;
    }

    /* Reset sidebar to normal desktop behavior */
    .sidebar-bg[b-vylkt1ukr3] {
        position: static;
        transform: none;
        width: auto;
        max-width: none;
        box-shadow: none;
        z-index: auto;
    }

    /* Reset logo spacing */
    .logo-wrapper[b-vylkt1ukr3] {
        margin-top: 40px;
    }
}

/* ===== LEGACY STYLES (keep for compatibility) ===== */

.navbar-toggler[b-vylkt1ukr3] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-vylkt1ukr3] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-vylkt1ukr3] {
    font-size: 1.1rem;
}

@media (min-width: 641px) {
    .navbar-toggler[b-vylkt1ukr3] {
        display: none;
    }

    .collapse[b-vylkt1ukr3] {
        display: block;
    }

    .nav-scrollable[b-vylkt1ukr3] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Feedback/Feedback.razor.rz.scp.css */
/*
 * Styles for the floating feedback component.
 */

/* Main container that holds the button and the form */
.feedback-container[b-8w1g6rla79] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050; /* Ensures it floats above most other content */
}

/* The circular floating action button (FAB) */
.feedback-fab[b-8w1g6rla79] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .feedback-fab:hover[b-8w1g6rla79] {
        transform: scale(1.1);
    }

/* The form panel that slides in */
.feedback-form[b-8w1g6rla79] {
    position: absolute;
    bottom: 80px; /* Position it above the FAB */
    right: 0;
    width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;
}

    /* The visible state for the form */
    .feedback-form.visible[b-8w1g6rla79] {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

/* A simple success message */
.feedback-success-message[b-8w1g6rla79] {
    text-align: center;
    padding: 20px;
    background-color: #d1e7dd; /* Bootstrap success green */
    color: #0f5132;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

textarea.form-control[b-8w1g6rla79]::placeholder {
    opacity: 0.5;
}
/* /Pages/Item/Item.razor.rz.scp.css */
/* Styling for the MBS Item Details Card */
.mbs-item-details-card[b-u24indph6w] {
    background-color: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Light grey border */
    border-radius: 0.5rem; /* Rounded corners */
    padding: 1.5rem; /* Internal padding */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Subtle shadow */
}
