/* _content/Wawi/Views/Components/ModalForm/ModalFormComponent.cshtml.rz.scp.css */

.modal-overlay[b-wjdghm5tnw] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
    animation: fadeIn 0.2s ease-out;
    backdrop-filter: blur(4px);
}

.modal-content[b-wjdghm5tnw] {
    background: var(--input-bg);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header[b-wjdghm5tnw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    gap: 12px;
    flex-shrink: 0;
}

    .modal-header h2[b-wjdghm5tnw] {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
    }

.modal-body[b-wjdghm5tnw] {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 24px;
    max-height: 70vh;
}

.modal-footer[b-wjdghm5tnw] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .modal-overlay[b-wjdghm5tnw] {
        padding: 0;
    }

    .modal-content[b-wjdghm5tnw] {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header[b-wjdghm5tnw],
    .modal-body[b-wjdghm5tnw],
    .modal-footer[b-wjdghm5tnw] {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-height: 600px) {
    .modal-header[b-wjdghm5tnw] {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .modal-body[b-wjdghm5tnw] {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .modal-footer[b-wjdghm5tnw] {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
/* _content/Wawi/Views/Components/ModalForm/_BigTextModalField.cshtml.rz.scp.css */
.big-text-modal-field[b-syt33o4bzf] {
    position: relative;
}

.big-text-wrapper[b-syt33o4bzf] {
    position: relative;
    width: 100%;
    min-height: 38px;
}

.big-textarea[b-syt33o4bzf] {
    width: 100%;
    height: 38px;
    resize: none;
    overflow: hidden;
    transition: height 0.2s ease-out, box-shadow 0.15s ease-out, z-index 0s;
    position: relative;
    z-index: 1;
}

    .big-textarea.expanded[b-syt33o4bzf] {
        height: 150px !important;
        overflow-y: auto;
        z-index: 2000;
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
        border-radius: var(--border-radius);
        background: var(--input-bg);
        position: relative;
    }

.big-text-counter[b-syt33o4bzf] {
    position: absolute;
    right: 8px;
    bottom: -18px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: all 0.15s ease-out;
}

.big-textarea.expanded + .big-text-counter[b-syt33o4bzf] {
    bottom: auto;
    top: -20px;
    right: 8px;
}
/* _content/Wawi/Views/Components/ModalForm/_CheckBoxModalField.cshtml.rz.scp.css */
.form-check[b-dsgpmxhqm9] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 8px 0;
}

.form-check-input[b-dsgpmxhqm9] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-label[b-dsgpmxhqm9] {
    cursor: pointer;
    user-select: none;
}
/* _content/Wawi/Views/Components/ModalForm/_DimensionsModalField.cshtml.rz.scp.css */
.dimensions-row[b-adcb2qa4p6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
    align-items: end;
}

    .dimensions-row > div[b-adcb2qa4p6] {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .dimensions-row label[b-adcb2qa4p6] {
        font-size: 0.85rem;
        color: var(--color-text-muted);
        font-weight: 500;
        white-space: nowrap;
    }

    .dimensions-row .form-control[b-adcb2qa4p6] {
        width: 100%;
        height: 38px;
    }

@media (max-width: 640px) {
    .dimensions-row[b-adcb2qa4p6] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* _content/Wawi/Views/Components/ModalForm/_DropdownModalFieldItems.cshtml.rz.scp.css */
.search-dropdown-menu[b-dgnfzd1bjl] {
    display: block;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: var(--input-bg);
    border: 1px solid #ddd;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 2000;
}

.search-dropdown-item[b-dgnfzd1bjl] {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: background 0.1s;
    min-height: 38px;
}

.search-dropdown-item:last-child[b-dgnfzd1bjl] {
    border-bottom: none;
}

.search-dropdown-item:hover[b-dgnfzd1bjl],
.search-dropdown-item:focus[b-dgnfzd1bjl] {
    background-color: #f0f0f0;
    color: var(--color-primary);
    outline: none;
}
/* _content/Wawi/Views/Components/ModalForm/_SearchDropdownModalField.cshtml.rz.scp.css */
.search-dropdown-component[b-r3mnyc4pz8] {
    position: relative;
}

.search-dropdown-wrapper[b-r3mnyc4pz8] {
    position: relative;
    width: 100%;
}

.sd-clear-btn[b-r3mnyc4pz8] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-inline: 10px;
    font-weight: bold;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* _content/Wawi/Views/Components/Navbar.cshtml.rz.scp.css */
.navbar-content[b-3ijttn8suw] {
    width: var(--wawi-sidebar-width, 260px);
    flex: 0 0 auto;
}

.sidebar[b-3ijttn8suw] {
    width: var(--wawi-sidebar-width, 260px);
    height: 100vh;

    display: flex;
    flex-direction: column;

    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
}

.sidebar-header[b-3ijttn8suw] {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-header h2[b-3ijttn8suw] {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.sidebar-menu[b-3ijttn8suw] {
    height: 100%;
    padding: 1rem;

    display: flex;
    flex-direction: column;
}

.sidebar-menu-top[b-3ijttn8suw],
.sidebar-menu-bottom[b-3ijttn8suw] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu-bottom[b-3ijttn8suw] {
    margin-top: auto;
}

.sidebar-separator[b-3ijttn8suw] {
    margin: 0.75rem 0;
    border-top: 1px solid #e0e0e0;
    opacity: 0.7;
}

.nav-link[b-3ijttn8suw] {
    width: 100%;
    padding: 0.75rem 1rem;

    display: block;
    text-align: left;

    background: none;
    border: none;
    border-radius: var(--border-radius);

    color: var(--color-text);
    cursor: pointer;
    font-size: 1rem;

    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover[b-3ijttn8suw] {
    background-color: #f0f0f0;
    color: var(--color-primary);
}

.mobile-header[b-3ijttn8suw],
.sidebar-toggle-btn[b-3ijttn8suw],
.sidebar-backdrop[b-3ijttn8suw] {
    display: none;
}

@media (max-width: 768px) {
    .navbar-content[b-3ijttn8suw] {
        width: 0;
        flex: 0 0 0;
    }

    .mobile-header[b-3ijttn8suw] {
        height: var(--wawi-mobile-header-height, 52px);
        padding: 0 0.75rem;

        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        display: flex;
        align-items: center;
        gap: 0.5rem;

        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;

        z-index: 1101;
    }

    .mobile-header-title[b-3ijttn8suw] {
        font-weight: 600;
        color: var(--color-primary);
        font-size: 1.05rem;
        line-height: 1;
    }

    .sidebar-toggle-btn[b-3ijttn8suw] {
        width: 34px;
        height: 34px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        border: 1px solid #d0d0d0;
        background: #ffffff;
        border-radius: 8px;

        color: var(--color-text);
        font-size: 1.2rem;
        line-height: 1;

        cursor: pointer;
    }

    .sidebar-toggle-btn:hover[b-3ijttn8suw] {
        background-color: #f0f0f0;
        color: var(--color-primary);
    }

    body.wawi-sidebar-open .mobile-header[b-3ijttn8suw] {
        opacity: 0;
        pointer-events: none;
    }

    .sidebar-backdrop[b-3ijttn8suw] {
        display: block;

        position: fixed;
        inset: 0;

        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;

        transition: opacity 0.18s ease-out;

        z-index: 1090;
    }

    body.wawi-sidebar-open .sidebar-backdrop[b-3ijttn8suw] {
        opacity: 1;
        pointer-events: auto;
    }

    .sidebar[b-3ijttn8suw] {
        position: fixed;
        top: 0;
        left: 0;

        transform: translateX(-105%);
        transition: transform 0.18s ease-out;

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

        z-index: 1200;
    }

    body.wawi-sidebar-open .sidebar[b-3ijttn8suw] {
        transform: translateX(0);
    }
}
/* _content/Wawi/Views/Pages/Administration/Administration.cshtml.rz.scp.css */
.admin-page[b-rs7sy1oz7l] {
    animation: fadeIn 0.3s ease-in-out;
}
/* _content/Wawi/Views/Pages/Inventory.cshtml.rz.scp.css */
.products-page[b-4aqc6y96x4] {
    animation: fadeIn 0.3s ease-in-out;
}
/* _content/Wawi/Views/Pages/Login.cshtml.rz.scp.css */
main[b-qixhmlpn5f] {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card[b-qixhmlpn5f] {
    width: 100%;
    max-width: 360px;
    padding: 24px 22px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.login-header[b-qixhmlpn5f] {
    margin-bottom: 18px;
    text-align: center;
}

.login-icon[b-qixhmlpn5f] {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
    object-fit: contain;
    opacity: 0.85;
}

.login-header h2[b-qixhmlpn5f] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

.login-card .form-group[b-qixhmlpn5f] {
    margin-bottom: 14px;
}

.login-card .btn-primary[b-qixhmlpn5f] {
    width: 100%;
    margin-top: 6px;
}

#login-result[b-qixhmlpn5f] {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    min-height: 1.2em;
}
/* _content/Wawi/Views/Pages/Orders.cshtml.rz.scp.css */
.orders-page[b-1j0946wow1] {
    animation: fadeIn 0.3s ease-in-out;
}

.filter-btn[b-1j0946wow1] {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all 0.2s;
}

.filter-btn:hover[b-1j0946wow1] {
    background-color: #f0f0f0;
    color: var(--color-text);
}

.filter-btn.active[b-1j0946wow1] {
    background-color: var(--color-primary);
    color: white;
}

.status-badge[b-1j0946wow1] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending[b-1j0946wow1] {
    background-color: #fff3cd;
    color: #856404;
}

.status-completed[b-1j0946wow1] {
    background-color: #d4edda;
    color: #155724;
}

.status-cancelled[b-1j0946wow1] {
    background-color: #f8d7da;
    color: #721c24;
}
/* _content/Wawi/Views/Pages/Support.cshtml.rz.scp.css */
.support-form-card[b-glc4uyj2mh] {
    max-width: 800px;
    margin: 0 auto;
}
/* _content/Wawi/Views/Shared/_DashboardLayout.cshtml.rz.scp.css */
.dashboard-container[b-zpts8u4q6y] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.main-content[b-zpts8u4q6y] {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background-color: #f4f6f8;
}

@media (max-width: 768px) {
    .main-content[b-zpts8u4q6y] {
        padding: 1rem;
        padding-top: calc(var(--wawi-mobile-header-height, 52px) + 1rem);
    }
}
