/* /Components/Alert.razor.rz.scp.css */
/* Modal Overlay */
.modal-overlay[b-b0igbp9imb] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    padding: 1rem;
    animation: fadeIn-b-b0igbp9imb 0.2s ease;
}

@keyframes fadeIn-b-b0igbp9imb {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Container */
.modal-container-alert[b-b0igbp9imb] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 450px;
    width: 100%;
    padding: 2rem;
    position: relative;
    animation: slideUp-b-b0igbp9imb 0.3s ease;
}

@keyframes slideUp-b-b0igbp9imb {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.btn-close-alert[b-b0igbp9imb] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

    .btn-close-alert:hover[b-b0igbp9imb] {
        background: #ef4444;
        color: white;
        transform: rotate(90deg);
    }

/* Icon Wrapper */
.modal-icon-wrapper[b-b0igbp9imb] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon[b-b0igbp9imb] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.icon-success[b-b0igbp9imb] {
    background: #d1fae5;
    color: #065f46;
}

.icon-error[b-b0igbp9imb] {
    background: #fee2e2;
    color: #991b1b;
}

.icon-warning[b-b0igbp9imb] {
    background: #fef3c7;
    color: #92400e;
}

.icon-info[b-b0igbp9imb] {
    background: #dbeafe;
    color: #1e40af;
}

/* Modal Content */
.modal-content-alert[b-b0igbp9imb] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-title-alert[b-b0igbp9imb] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.modal-message-alert[b-b0igbp9imb] {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Modal Actions */
.modal-actions-alert[b-b0igbp9imb] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-modal-alert[b-b0igbp9imb] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

    .btn-modal-alert i[b-b0igbp9imb] {
        font-size: 1rem;
    }

/* Cancel Button */
.btn-cancel[b-b0igbp9imb] {
    background: white;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
}

    .btn-cancel:hover[b-b0igbp9imb] {
        background: #f8fafc;
        border-color: #cbd5e1;
        transform: translateY(-1px);
    }

/* Confirm Buttons by Type */
.btn-confirm[b-b0igbp9imb] {
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .btn-confirm:hover[b-b0igbp9imb] {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    }

.btn-success[b-b0igbp9imb] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

    .btn-success:hover[b-b0igbp9imb] {
        box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
    }

.btn-error[b-b0igbp9imb] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

    .btn-error:hover[b-b0igbp9imb] {
        box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.4);
    }

.btn-warning[b-b0igbp9imb] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

    .btn-warning:hover[b-b0igbp9imb] {
        box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
    }

.btn-info[b-b0igbp9imb] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

    .btn-info:hover[b-b0igbp9imb] {
        box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
    }

/* Responsive */
@media (max-width: 640px) {
    .modal-container-alert[b-b0igbp9imb] {
        padding: 1.5rem;
        margin: 1rem;
    }

    .modal-icon[b-b0igbp9imb] {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .modal-title-alert[b-b0igbp9imb] {
        font-size: 1.25rem;
    }

    .modal-message-alert[b-b0igbp9imb] {
        font-size: 0.875rem;
    }

    .modal-actions-alert[b-b0igbp9imb] {
        flex-direction: column-reverse;
    }

    .btn-modal-alert[b-b0igbp9imb] {
        width: 100%;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-pfp72wmew5] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-pfp72wmew5] {
    background-image: linear-gradient(180deg, #1c2b38 0%, #2c4356 70%);
    border-right: 3px solid #3f9c8a;
}

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

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

        .top-row[b-pfp72wmew5]  a:hover, .top-row[b-pfp72wmew5]  .btn-link:hover {
            text-decoration: underline;
            color: #3f9c8a;
        }

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

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

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

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

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

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

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

    .top-row[b-pfp72wmew5], article[b-pfp72wmew5] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-pfp72wmew5] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-pfp72wmew5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ===================================
       SIDEBAR MODERNO - DESIGN SYSTEM
       (paleta AlphaInd: navy petróleo + verde-água)
       =================================== */

.modern-sidebar[b-f8hu1w7i11] {
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1c2b38 0%, #0f1922 100%);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    border-right: 3px solid #3f9c8a;
}

    .modern-sidebar.collapsed[b-f8hu1w7i11] {
        width: 88px;
    }

    /* Efeito de brilho sutil */
    .modern-sidebar[b-f8hu1w7i11]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: radial-gradient(circle at top, rgba(63, 156, 138, 0.12), transparent);
        pointer-events: none;
    }

/* ===================================
       HEADER DO SIDEBAR
       =================================== */

.sidebar-header[b-f8hu1w7i11] {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.brand-container[b-f8hu1w7i11] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon[b-f8hu1w7i11] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 16px rgba(63, 156, 138, 0.3);
}

.brand-text[b-f8hu1w7i11] {
    display: flex;
    flex-direction: column;
}

    .modern-sidebar.collapsed .brand-text[b-f8hu1w7i11],
    .modern-sidebar.collapsed .nav-text[b-f8hu1w7i11],
    .modern-sidebar.collapsed .nav-section-title[b-f8hu1w7i11],
    .modern-sidebar.collapsed .stat-value[b-f8hu1w7i11],
    .modern-sidebar.collapsed .stat-label[b-f8hu1w7i11] {
        display: none;
    }

    .modern-sidebar.collapsed .sidebar-header[b-f8hu1w7i11],
    .modern-sidebar.collapsed .nav-item[b-f8hu1w7i11],
    .modern-sidebar.collapsed .sidebar-footer[b-f8hu1w7i11] {
        justify-content: center;
    }

    .modern-sidebar.collapsed .brand-container[b-f8hu1w7i11] {
        gap: 0;
    }

    .modern-sidebar.collapsed .sidebar-collapse[b-f8hu1w7i11] {
        transform: rotate(180deg);
    }

    .modern-sidebar.collapsed .nav-item[b-f8hu1w7i11] {
        gap: 0;
    }

    .modern-sidebar.collapsed .nav-icon[b-f8hu1w7i11] {
        margin: 0;
    }

    .modern-sidebar.collapsed .footer-actions[b-f8hu1w7i11] {
        width: 100%;
    }

.brand-title[b-f8hu1w7i11] {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.brand-subtitle[b-f8hu1w7i11] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 500;
}

.sidebar-collapse[b-f8hu1w7i11] {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .sidebar-collapse:hover[b-f8hu1w7i11] {
        background: rgba(63, 156, 138, 0.3);
        transform: translateX(-2px);
    }

/* ===================================
       PROFILE CARD
       =================================== */

.sidebar-profile[b-f8hu1w7i11] {
    margin: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

    .sidebar-profile:hover[b-f8hu1w7i11] {
        background: rgba(63, 156, 138, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.profile-avatar[b-f8hu1w7i11] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.profile-status[b-f8hu1w7i11] {
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #1c2b38;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.profile-info[b-f8hu1w7i11] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.profile-name[b-f8hu1w7i11] {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role[b-f8hu1w7i11] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.profile-dropdown[b-f8hu1w7i11] {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .profile-dropdown:hover[b-f8hu1w7i11] {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

/* ===================================
       NAVEGAÇÃO
       =================================== */

.sidebar-nav[b-f8hu1w7i11] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1;
}

    /* Scroll customizado */
    .sidebar-nav[b-f8hu1w7i11]::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar-nav[b-f8hu1w7i11]::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-nav[b-f8hu1w7i11]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

        .sidebar-nav[b-f8hu1w7i11]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }

.nav-section[b-f8hu1w7i11] {
    margin-bottom: 1.5rem;
}

.nav-section-title[b-f8hu1w7i11] {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.nav-item[b-f8hu1w7i11] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1.25rem;
    margin: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

    /* Efeito hover */
    .nav-item[b-f8hu1w7i11]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #3f9c8a;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-item:hover[b-f8hu1w7i11] {
        background: rgba(255, 255, 255, 0.08);
        color: white;
        transform: translateX(4px);
    }

        .nav-item:hover[b-f8hu1w7i11]::before {
            transform: scaleY(1);
        }

    /* Item ativo */
    .nav-item.active[b-f8hu1w7i11] {
        background: rgba(63, 156, 138, 0.18);
        color: white;
        font-weight: 600;
    }

        .nav-item.active[b-f8hu1w7i11]::before {
            transform: scaleY(1);
        }

        .nav-item.active .nav-icon[b-f8hu1w7i11] {
            background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
            box-shadow: 0 4px 12px rgba(63, 156, 138, 0.4);
        }

.nav-icon[b-f8hu1w7i11] {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-text[b-f8hu1w7i11] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===================================
   VERSÃO ::deep — necessária se cada item for
   um <NavLink class="nav-item"> (componente filho
   do Blazor). Sem isso, o CSS isolado do layout
   não alcança o <a> renderizado pelo NavLink.
   =================================== */

[b-f8hu1w7i11] .nav-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1.25rem;
    margin: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

    [b-f8hu1w7i11] .nav-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #3f9c8a;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    [b-f8hu1w7i11] .nav-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
        transform: translateX(4px);
    }

        [b-f8hu1w7i11] .nav-item:hover::before {
            transform: scaleY(1);
        }

    [b-f8hu1w7i11] .nav-item.active {
        background: rgba(63, 156, 138, 0.18);
        color: white;
        font-weight: 600;
    }

        [b-f8hu1w7i11] .nav-item.active::before {
            transform: scaleY(1);
        }

        [b-f8hu1w7i11] .nav-item.active .nav-icon {
            background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
            box-shadow: 0 4px 12px rgba(63, 156, 138, 0.4);
        }

[b-f8hu1w7i11] .nav-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

[b-f8hu1w7i11] .nav-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badges e Notificações */
.nav-badge[b-f8hu1w7i11] {
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-count[b-f8hu1w7i11] {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}

.nav-notification[b-f8hu1w7i11] {
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-status[b-f8hu1w7i11] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

    .nav-status.active[b-f8hu1w7i11] {
        animation: pulse-b-f8hu1w7i11 2s infinite;
    }

@keyframes pulse-b-f8hu1w7i11 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ===================================
       FOOTER DO SIDEBAR
       =================================== */

.sidebar-footer[b-f8hu1w7i11] {
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.footer-stats[b-f8hu1w7i11] {
    margin-bottom: 1rem;
}

.stat-item[b-f8hu1w7i11] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

    .stat-item i[b-f8hu1w7i11] {
        font-size: 1.5rem;
        color: #3f9c8a;
    }

    .stat-item > div[b-f8hu1w7i11] {
        display: flex;
        flex-direction: column;
    }

.stat-value[b-f8hu1w7i11] {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.stat-label[b-f8hu1w7i11] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-actions[b-f8hu1w7i11] {
    display: flex;
    gap: 0.5rem;
}

.footer-btn[b-f8hu1w7i11] {
    flex: 1;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer-btn:hover[b-f8hu1w7i11] {
        background: rgba(63, 156, 138, 0.2);
        color: white;
        transform: translateY(-2px);
    }

    .footer-btn.logout[b-f8hu1w7i11] {
        background: rgba(239, 68, 68, 0.15);
        color: #ef4444;
    }

        .footer-btn.logout:hover[b-f8hu1w7i11] {
            background: rgba(239, 68, 68, 0.25);
        }

/* ===================================
       RESPONSIVIDADE
       =================================== */

@media (max-width: 1024px) {
    .modern-sidebar[b-f8hu1w7i11] {
        width: 280px;
        height: 100%;
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        transition: none;
        z-index: 1;
        padding-bottom: 48px;
    }

        .modern-sidebar.collapsed[b-f8hu1w7i11] {
            width: 280px;
        }

        .modern-sidebar.collapsed .brand-text[b-f8hu1w7i11],
        .modern-sidebar.collapsed .nav-text[b-f8hu1w7i11],
        .modern-sidebar.collapsed .nav-section-title[b-f8hu1w7i11],
        .modern-sidebar.collapsed .stat-value[b-f8hu1w7i11],
        .modern-sidebar.collapsed .stat-label[b-f8hu1w7i11] {
            display: block;
        }

        .modern-sidebar.collapsed .sidebar-header[b-f8hu1w7i11],
        .modern-sidebar.collapsed .nav-item[b-f8hu1w7i11],
        .modern-sidebar.collapsed .sidebar-footer[b-f8hu1w7i11] {
            justify-content: space-between;
        }

        .modern-sidebar.collapsed .brand-container[b-f8hu1w7i11] {
            gap: 1rem;
        }

        .modern-sidebar.collapsed .sidebar-collapse[b-f8hu1w7i11] {
            transform: none;
        }

        .modern-sidebar.collapsed .nav-item[b-f8hu1w7i11] {
            gap: 1rem;
        }

        .modern-sidebar.collapsed .nav-icon[b-f8hu1w7i11] {
            margin: 0;
        }

        .modern-sidebar.collapsed .footer-actions[b-f8hu1w7i11] {
            width: auto;
        }

        .sidebar-collapse[b-f8hu1w7i11] {
            display: none;
        }
}

@media (max-width: 768px) {
    .modern-sidebar[b-f8hu1w7i11] {
        width: 280px;
        padding-bottom: 48px;
    }

    .brand-subtitle[b-f8hu1w7i11] {
        display: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-dd0l1oetk7],
.components-reconnect-repeated-attempt-visible[b-dd0l1oetk7],
.components-reconnect-failed-visible[b-dd0l1oetk7],
.components-pause-visible[b-dd0l1oetk7],
.components-resume-failed-visible[b-dd0l1oetk7],
.components-rejoining-animation[b-dd0l1oetk7] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-retrying[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-failed[b-dd0l1oetk7],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-dd0l1oetk7] {
    display: block;
}


#components-reconnect-modal[b-dd0l1oetk7] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-dd0l1oetk7 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-dd0l1oetk7 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-dd0l1oetk7 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-dd0l1oetk7]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-dd0l1oetk7 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-dd0l1oetk7 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-dd0l1oetk7 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-dd0l1oetk7 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-dd0l1oetk7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-dd0l1oetk7] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-dd0l1oetk7] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-dd0l1oetk7] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-dd0l1oetk7] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-dd0l1oetk7] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-dd0l1oetk7] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-dd0l1oetk7 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-dd0l1oetk7] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-dd0l1oetk7 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AtualizacaoEstoque.razor.rz.scp.css */
/* ============================================
   Estoque - identidade visual do cliente (AlphaInd)
   Paleta: navy petróleo (#1c2b38 / #2c4356) + verde-água (#3f9c8a)
   ============================================ */

/* Container */
.estoque-container[b-jzuaw75tym] {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header */
.estoque-header[b-jzuaw75tym] {
    background: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(10, 20, 30, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-left: 4px solid #3f9c8a;
}

.header-content[b-jzuaw75tym] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-jzuaw75tym] {
    width: 48px;
    height: 48px;
    background: rgba(63, 156, 138, 0.2);
    border: 1.5px solid rgba(63, 156, 138, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6fd6c2;
    backdrop-filter: blur(10px);
}

.header-title[b-jzuaw75tym] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color:white;
}

.header-subtitle[b-jzuaw75tym] {
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

.header-actions[b-jzuaw75tym] {
    display: flex;
    gap: 0.75rem;
}

.btn-modern[b-jzuaw75tym] {
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-modern:disabled[b-jzuaw75tym] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-primary[b-jzuaw75tym] {
    background: #3f9c8a;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

    .btn-primary:hover:not(:disabled)[b-jzuaw75tym] {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(63, 156, 138, 0.35);
    }

.btn-secondary[b-jzuaw75tym] {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

    .btn-secondary:hover[b-jzuaw75tym] {
        background: rgba(255, 255, 255, 0.22);
    }

/* Progress Card */
.progress-card[b-jzuaw75tym] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.progress-header[b-jzuaw75tym] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-info[b-jzuaw75tym] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .progress-info i[b-jzuaw75tym] {
        font-size: 2rem;
        color: #3f9c8a;
    }

    .progress-info h3[b-jzuaw75tym] {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 700;
        color: #1e293b;
    }

    .progress-info p[b-jzuaw75tym] {
        margin: 0.25rem 0 0 0;
        font-size: 0.875rem;
        color: #64748b;
    }

.progress-percentage[b-jzuaw75tym] {
    font-size: 2rem;
    font-weight: 700;
    color: #3f9c8a;
}

/* Progress Bar */
.progress-bar-container[b-jzuaw75tym] {
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar-fill[b-jzuaw75tym] {
    height: 100%;
    background: linear-gradient(90deg, #3f9c8a 0%, #2c4356 100%);
    transition: width 0.3s ease;
    border-radius: 6px;
}

/* Progress Stats */
.progress-stats[b-jzuaw75tym] {
    display: flex;
    gap: 2rem;
}

.stat[b-jzuaw75tym] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

    .stat i[b-jzuaw75tym] {
        font-size: 1.125rem;
    }

    .stat.success[b-jzuaw75tym] {
        color: #10b981;
    }

    .stat.error[b-jzuaw75tym] {
        color: #ef4444;
    }

    .stat strong[b-jzuaw75tym] {
        color: #1e293b;
        font-weight: 700;
    }

/* Empty State */
.empty-state-card[b-jzuaw75tym] {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed #e2e8f0;
}

.empty-content i[b-jzuaw75tym] {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: block;
}

.empty-content h3[b-jzuaw75tym] {
    margin: 0.5rem 0;
    color: #1e293b;
}

.empty-content p[b-jzuaw75tym] {
    color: #64748b;
    margin: 0;
}

/* Table Container */
.produtos-table-container[b-jzuaw75tym] {
    background: white;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.table-header-info[b-jzuaw75tym] {
    padding: 1rem 1.5rem;
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    border-bottom: 1.5px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .table-header-info h3[b-jzuaw75tym] {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 700;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .table-header-info h3 i[b-jzuaw75tym] {
            color: #3f9c8a;
        }

.badge-total[b-jzuaw75tym] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #e7f4f1;
    color: #256657;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.table-wrapper[b-jzuaw75tym] {
    overflow-x: auto;
    max-height: 600px;
}

/* Table */
.produtos-table[b-jzuaw75tym] {
    width: 100%;
    border-collapse: collapse;
}

    .produtos-table thead[b-jzuaw75tym] {
        background: #f8fafc;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .produtos-table th[b-jzuaw75tym] {
        padding: 0.875rem 1rem;
        text-align: left;
        font-weight: 700;
        font-size: 0.75rem;
        color: #475569;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        white-space: nowrap;
        border-bottom: 2px solid #e2e8f0;
    }

        .produtos-table th i[b-jzuaw75tym] {
            margin-right: 0.375rem;
            color: #3f9c8a;
        }

    .produtos-table tbody tr[b-jzuaw75tym] {
        border-bottom: 1px solid #e2e8f0;
        transition: all 0.2s ease;
    }

        .produtos-table tbody tr:hover[b-jzuaw75tym] {
            background: #f8fafc;
        }

    .produtos-table td[b-jzuaw75tym] {
        padding: 1rem;
        font-size: 0.875rem;
    }

/* Table Columns */
.col-status[b-jzuaw75tym] {
    width: 50px;
    text-align: center;
}

.col-referencia[b-jzuaw75tym] {
    width: 150px;
}

.col-descricao[b-jzuaw75tym] {
    width: auto;
    min-width: 200px;
}

.col-estoque[b-jzuaw75tym] {
    width: 140px;
}

.col-status-text[b-jzuaw75tym] {
    width: 120px;
}

/* Status Icon */
.status-icon[b-jzuaw75tym] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

    .status-icon.success[b-jzuaw75tym] {
        background: #d1fae5;
        color: #065f46;
    }

    .status-icon.error[b-jzuaw75tym] {
        background: #fee2e2;
        color: #991b1b;
    }

    .status-icon i[b-jzuaw75tym] {
        font-size: 1.125rem;
    }

/* SKU Code */
.sku-code[b-jzuaw75tym] {
    background: #f1f5f9;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    display: inline-block;
}

/* Produto Nome */
.produto-nome[b-jzuaw75tym] {
    color: #1e293b;
    font-weight: 500;
}

/* Estoque */
.estoque-valor[b-jzuaw75tym] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

    .estoque-valor.anterior[b-jzuaw75tym] {
        background: #f1f5f9;
        color: #64748b;
    }

    .estoque-valor.atual[b-jzuaw75tym] {
        background: #e7f4f1;
        color: #256657;
    }

.estoque-atual[b-jzuaw75tym] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.estoque-diff[b-jzuaw75tym] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

    .estoque-diff.positive[b-jzuaw75tym] {
        background: #d1fae5;
        color: #065f46;
    }

    .estoque-diff.negative[b-jzuaw75tym] {
        background: #fee2e2;
        color: #991b1b;
    }

/* Status Badge */
.status-badge[b-jzuaw75tym] {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-success[b-jzuaw75tym] {
    background: #d1fae5;
    color: #065f46;
}

.badge-error[b-jzuaw75tym] {
    background: #fee2e2;
    color: #991b1b;
}

/* Row Colors */
.row-error[b-jzuaw75tym] {
    background: #fef2f2;
}

/* Modal */
.modal-overlay[b-jzuaw75tym] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 20, 27, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-jzuaw75tym 0.2s ease;
}

.modal-container-confirm[b-jzuaw75tym] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(10, 20, 30, 0.35);
    animation: slideUp-b-jzuaw75tym 0.3s ease;
    border-top: 4px solid #3f9c8a;
}

.modal-icon[b-jzuaw75tym] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

    .modal-icon.warning[b-jzuaw75tym] {
        background: #fef3c7;
        color: #92400e;
    }

    .modal-icon.success[b-jzuaw75tym] {
        background: #d1fae5;
        color: #065f46;
    }

.modal-container-confirm h2[b-jzuaw75tym] {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    color: #1e293b;
}

.modal-container-confirm p[b-jzuaw75tym] {
    margin: 0 0 1.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
}

.modal-actions[b-jzuaw75tym] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-modal[b-jzuaw75tym] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-modal.btn-secondary[b-jzuaw75tym] {
        background: white;
        color: #64748b;
        border: 1.5px solid #e2e8f0;
    }

        .btn-modal.btn-secondary:hover[b-jzuaw75tym] {
            background: #f8fafc;
        }

    .btn-modal.btn-primary[b-jzuaw75tym] {
        background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
        color: white;
    }

        .btn-modal.btn-primary:hover[b-jzuaw75tym] {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(63, 156, 138, 0.4);
        }

/* Animations */
@keyframes fadeIn-b-jzuaw75tym {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-jzuaw75tym {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .estoque-header[b-jzuaw75tym] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .header-actions[b-jzuaw75tym] {
        width: 100%;
        flex-direction: column;
    }

    .btn-modern[b-jzuaw75tym] {
        width: 100%;
        justify-content: center;
    }

    .progress-header[b-jzuaw75tym] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .progress-stats[b-jzuaw75tym] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .table-header-info[b-jzuaw75tym] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .produtos-table th[b-jzuaw75tym],
    .produtos-table td[b-jzuaw75tym] {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}
/* /Components/Pages/Configuracao.razor.rz.scp.css */
/* ============================================
   Configura��es - identidade visual do cliente (AlphaInd)
   Paleta: navy petr�leo (#1c2b38 / #2c4356) + verde-�gua (#3f9c8a)
   ============================================ */

/* Container */
.config-container[b-w1eop7kvrw] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header */
.config-header[b-w1eop7kvrw] {
    background: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(10, 20, 30, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-left: 4px solid #3f9c8a;
}

.header-content[b-w1eop7kvrw] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-w1eop7kvrw] {
    width: 48px;
    height: 48px;
    background: rgba(63, 156, 138, 0.2);
    border: 1.5px solid rgba(63, 156, 138, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6fd6c2;
    backdrop-filter: blur(10px);
}

.header-title[b-w1eop7kvrw] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.header-subtitle[b-w1eop7kvrw] {
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

.btn-modern[b-w1eop7kvrw] {
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary[b-w1eop7kvrw] {
    background: #3f9c8a;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

    .btn-primary:hover[b-w1eop7kvrw] {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(63, 156, 138, 0.35);
    }

/* Loading */
.loading-container[b-w1eop7kvrw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
}

.skeleton-card[b-w1eop7kvrw] {
    height: 280px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-w1eop7kvrw 1.5s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes loading-b-w1eop7kvrw {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Empty State */
.empty-state-card[b-w1eop7kvrw] {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed #e2e8f0;
}

.empty-content i[b-w1eop7kvrw] {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: block;
}

.empty-content h3[b-w1eop7kvrw] {
    margin: 0.5rem 0;
    color: #1e293b;
}

.empty-content p[b-w1eop7kvrw] {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Config Grid */
.config-grid[b-w1eop7kvrw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
}

/* Config Card */
.config-card[b-w1eop7kvrw] {
    background: white;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

    .config-card:hover[b-w1eop7kvrw] {
        box-shadow: 0 10px 25px rgba(28, 43, 56, 0.12);
        transform: translateY(-2px);
    }

    .config-card.inactive[b-w1eop7kvrw] {
        opacity: 0.7;
        background: #f8fafc;
    }

.config-card-header[b-w1eop7kvrw] {
    padding: 1rem;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1.5px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-info[b-w1eop7kvrw] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex: 1;
}

.empresa-icon[b-w1eop7kvrw] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c4356 0%, #1c2b38 100%);
    border: 1.5px solid #3f9c8a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f9c8a;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.header-info h3[b-w1eop7kvrw] {
    margin: 0 0 0.375rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.badge-status[b-w1eop7kvrw] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

    .badge-status i[b-w1eop7kvrw] {
        font-size: 0.5rem;
    }

.status-active[b-w1eop7kvrw] {
    background: #d7f0ea;
    color: #1f6f5c;
}

.status-inactive[b-w1eop7kvrw] {
    background: #f3f4f6;
    color: #6b7280;
}

.config-actions[b-w1eop7kvrw] {
    display: flex;
    gap: 0.375rem;
}

.btn-icon[b-w1eop7kvrw] {
    width: 32px;
    height: 32px;
    border: none;
    background: #f8fafc;
    color: #64748b;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

    .btn-icon:hover[b-w1eop7kvrw] {
        background: #3f9c8a;
        color: white;
        transform: scale(1.1);
    }

    .btn-icon.btn-danger:hover[b-w1eop7kvrw] {
        background: #ef4444;
    }

    .btn-icon.btn-success:hover[b-w1eop7kvrw] {
        background: #10b981;
    }

    .btn-icon.btn-active[b-w1eop7kvrw] {
        background: #fef3c7;
        color: #92400e;
    }

    .btn-icon.btn-inactive[b-w1eop7kvrw] {
        background: #f3f4f6;
        color: #9ca3af;
    }

/* Card Body */
.config-card-body[b-w1eop7kvrw] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-group[b-w1eop7kvrw] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.info-item[b-w1eop7kvrw] {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.85rem;
}

    .info-item i[b-w1eop7kvrw] {
        color: #3f9c8a;
        font-size: 1rem;
        margin-top: 0.125rem;
        flex-shrink: 0;
    }

.info-label[b-w1eop7kvrw] {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
}

.info-value[b-w1eop7kvrw] {
    display: block;
    color: #1e293b;
    font-weight: 500;
}

.url-truncate[b-w1eop7kvrw] {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge-atacado[b-w1eop7kvrw] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #e7f4f1;
    color: #256657;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

/* Card Footer */
.config-card-footer[b-w1eop7kvrw] {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-top: 1.5px solid #e2e8f0;
}

.job-status[b-w1eop7kvrw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

    .job-status.active[b-w1eop7kvrw] {
        color: #1f6f5c;
    }

    .job-status.inactive[b-w1eop7kvrw] {
        color: #9ca3af;
    }

.spinning[b-w1eop7kvrw] {
    animation: spin-b-w1eop7kvrw 2s linear infinite;
}

@keyframes spin-b-w1eop7kvrw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Modal */
.modal-overlay[b-w1eop7kvrw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 20, 27, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn-b-w1eop7kvrw 0.2s ease;
}

@keyframes fadeIn-b-w1eop7kvrw {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-container[b-w1eop7kvrw] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(10, 20, 30, 0.35);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp-b-w1eop7kvrw 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 4px solid #3f9c8a;
}

@keyframes slideUp-b-w1eop7kvrw {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.modal-header-config[b-w1eop7kvrw] {
    padding: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.modal-title-area[b-w1eop7kvrw] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .modal-title-area i[b-w1eop7kvrw] {
        font-size: 1.75rem;
        color: #3f9c8a;
        margin-top: 0.25rem;
    }

    .modal-title-area h2[b-w1eop7kvrw] {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
    }

.modal-subtitle[b-w1eop7kvrw] {
    display: block;
    font-size: 0.875rem;
    color: white;
    margin-top: 0.25rem;
}

.btn-close[b-w1eop7kvrw] {
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1rem;
}

    .btn-close:hover[b-w1eop7kvrw] {
        background: #ef4444;
        color: white;
        transform: rotate(90deg);
    }

/* Modal Body */
.modal-body-config[b-w1eop7kvrw] {
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wizard-card-body[b-w1eop7kvrw] {
    overflow: visible;
}

/* Form Sections */
.form-section[b-w1eop7kvrw] {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1.5px solid #e2e8f0;
}

.section-header[b-w1eop7kvrw] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

    .section-header i[b-w1eop7kvrw] {
        font-size: 1.25rem;
        color: #3f9c8a;
    }

    .section-header h3[b-w1eop7kvrw] {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 700;
        color: #1e293b;
    }

/* Form Rows and Groups */
.form-row[b-w1eop7kvrw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row-3[b-w1eop7kvrw] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-row:last-child[b-w1eop7kvrw] {
    margin-bottom: 0;
}

.form-group[b-w1eop7kvrw] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group:last-child[b-w1eop7kvrw] {
        margin-bottom: 0;
    }

.form-label[b-w1eop7kvrw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

    .form-label i[b-w1eop7kvrw] {
        color: #3f9c8a;
        font-size: 1rem;
    }

.form-input[b-w1eop7kvrw] {
    width: 100%;
    padding: 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: white;
    box-sizing: border-box;
}

[b-w1eop7kvrw] .form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: white;
    box-sizing: border-box;
}

.form-input:hover[b-w1eop7kvrw] {
    border-color: #cbd5e1;
}

[b-w1eop7kvrw] .form-input:hover {
    border-color: #cbd5e1;
}

.form-input:focus[b-w1eop7kvrw] {
    outline: none;
    border-color: #3f9c8a;
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
}

[b-w1eop7kvrw] .form-input:focus {
    outline: none;
    border-color: #3f9c8a;
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
}

.form-input[b-w1eop7kvrw]::placeholder {
    color: #94a3b8;
}

[b-w1eop7kvrw] .form-input::placeholder {
    color: #94a3b8;
}

/* Checkbox Group */
.checkbox-group[b-w1eop7kvrw] {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.checkbox-label[b-w1eop7kvrw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-input[b-w1eop7kvrw] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3f9c8a;
}

[b-w1eop7kvrw] .checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3f9c8a;
}

.checkbox-text[b-w1eop7kvrw] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

/* Validation Error */
.validation-error[b-w1eop7kvrw] {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

[b-w1eop7kvrw] .validation-error {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Modal Footer */
.modal-footer-config[b-w1eop7kvrw] {
    padding: 1.25rem 1.5rem;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #f8fafc;
}

.btn-modal[b-w1eop7kvrw] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-modal i[b-w1eop7kvrw] {
        font-size: 1rem;
    }

    .btn-modal:disabled[b-w1eop7kvrw] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-secondary[b-w1eop7kvrw] {
    background: white;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
}

    .btn-secondary:hover:not(:disabled)[b-w1eop7kvrw] {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

.btn-modal.btn-primary[b-w1eop7kvrw] {
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(63, 156, 138, 0.3);
}

    .btn-modal.btn-primary:hover:not(:disabled)[b-w1eop7kvrw] {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(63, 156, 138, 0.4);
    }

/* Spinner */
.spinner[b-w1eop7kvrw] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-w1eop7kvrw 0.8s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .config-grid[b-w1eop7kvrw] {
        grid-template-columns: 1fr;
    }

    .form-row[b-w1eop7kvrw] {
        grid-template-columns: 1fr;
    }

    .modal-container[b-w1eop7kvrw] {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .header-actions[b-w1eop7kvrw] {
        display: none;
    }

    .config-header[b-w1eop7kvrw] {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== Wizard Progress Bar ===== */
.wizard-progress-bar[b-w1eop7kvrw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 30px 0;
    background: #f8fafc;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.wizard-step-item[b-w1eop7kvrw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

    .wizard-step-item:not(:last-child)[b-w1eop7kvrw]::after {
        content: '';
        position: absolute;
        top: 20px;
        left: 50%;
        width: 100%;
        height: 3px;
        background-color: #dee2e6;
        z-index: 1;
    }

    .wizard-step-item.completed:not(:last-child)[b-w1eop7kvrw]::after {
        background-color: #3f9c8a;
    }

.step-circle[b-w1eop7kvrw] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.wizard-step-item.active .step-circle[b-w1eop7kvrw] {
    border-color: #3f9c8a;
    color: #2c4356;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(63, 156, 138, 0.18);
}

.wizard-step-item.completed .step-circle[b-w1eop7kvrw] {
    border-color: #3f9c8a;
    background-color: #3f9c8a;
    color: white;
}

.step-label[b-w1eop7kvrw] {
    font-size: 0.85rem;
    margin-top: 8px;
    color: #6c757d;
    font-weight: 500;
}

.wizard-step-item.active .step-label[b-w1eop7kvrw] {
    color: #2c4356;
    font-weight: bold;
}

.wizard-footer[b-w1eop7kvrw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.animated[b-w1eop7kvrw] {
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeIn2-b-w1eop7kvrw {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn[b-w1eop7kvrw] {
    animation-name: fadeIn2-b-w1eop7kvrw;
}

/* ===== Cards de E-commerce ===== */
.ecommerce-card-grid[b-w1eop7kvrw] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px;
}

@media (min-width: 1400px) {
    .ecommerce-card-grid[b-w1eop7kvrw] {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 900px) {
    .ecommerce-card-grid[b-w1eop7kvrw] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ecommerce-card-grid[b-w1eop7kvrw] {
        grid-template-columns: 1fr;
    }
}

.ecommerce-card[b-w1eop7kvrw] {
    --accent: #3f9c8a;
    position: relative;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    .ecommerce-card[b-w1eop7kvrw]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 4px;
        background: var(--accent);
        transform: scaleY(0);
        transition: transform 0.25s ease;
    }

    .ecommerce-card:hover[b-w1eop7kvrw] {
        border-color: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

        .ecommerce-card:hover[b-w1eop7kvrw]::before {
            transform: scaleY(1);
        }

    .ecommerce-card.selected[b-w1eop7kvrw] {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
        background: color-mix(in srgb, var(--accent) 4%, white);
    }

        .ecommerce-card.selected[b-w1eop7kvrw]::before {
            transform: scaleY(1);
        }

.ecommerce-card-header[b-w1eop7kvrw] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.ecommerce-icon-badge[b-w1eop7kvrw] {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent) 14%, white);
    border: 1.5px solid color-mix(in srgb, var(--accent) 55%, transparent);
    padding: 6px;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

    .ecommerce-icon-badge svg[b-w1eop7kvrw] {
        width: 100%;
        height: 100%;
        display: block;
    }

.ecommerce-card.selected .ecommerce-icon-badge[b-w1eop7kvrw],
.ecommerce-card:hover .ecommerce-icon-badge[b-w1eop7kvrw] {
    background: color-mix(in srgb, var(--accent) 22%, white);
    border-color: var(--accent);
}

.ecommerce-card-description[b-w1eop7kvrw] {
    margin: 0.75rem 0 1rem 0;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    min-height: 44px;
}

.ecommerce-card-footer[b-w1eop7kvrw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.ecommerce-card.selected .ecommerce-card-footer[b-w1eop7kvrw] {
    color: var(--accent);
}

.ecommerce-card-footer i[b-w1eop7kvrw] {
    font-size: 1.05rem;
    color: #cbd5e1;
    transition: color 0.25s ease;
}

.ecommerce-card.selected .ecommerce-card-footer i[b-w1eop7kvrw] {
    color: var(--accent);
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ============================================
   Pedidos - identidade visual do cliente (AlphaInd)
   Paleta: navy petróleo (#1c2b38 / #2c4356) + verde-água (#3f9c8a)
   Tipografia: Manrope (display) + Inter (corpo/dados)
   ============================================ */

.pedidos-container[b-tm6tqkzf6a] {
    --font-display: 'Manrope', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-body);
}

/* Header */
.pedidos-header[b-tm6tqkzf6a] {
    position: relative;
    background: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(10, 20, 30, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-left: 4px solid #3f9c8a;
    overflow: hidden;
}

    .pedidos-header[b-tm6tqkzf6a]::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1.5px 1.5px, rgba(111, 214, 194, 0.16) 1.5px, transparent 0);
        background-size: 18px 18px;
        mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 65%);
        pointer-events: none;
    }

.header-content[b-tm6tqkzf6a] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-tm6tqkzf6a] {
    width: 48px;
    height: 48px;
    background: rgba(63, 156, 138, 0.2);
    border: 1.5px solid rgba(63, 156, 138, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6fd6c2;
    backdrop-filter: blur(10px);
}

.header-title[b-tm6tqkzf6a] {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: white;
}

.header-subtitle[b-tm6tqkzf6a] {
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

.header-stats[b-tm6tqkzf6a] {
    position: relative;
    display: flex;
    gap: 1rem;
}

.stat-item[b-tm6tqkzf6a] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .stat-item i[b-tm6tqkzf6a] {
        font-size: 1rem;
        color: #6fd6c2;
    }

/* Card de Filtros */
.filter-card[b-tm6tqkzf6a] {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.dashboard-period-filter[b-tm6tqkzf6a] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.filter-header[b-tm6tqkzf6a] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

    .filter-header h3[b-tm6tqkzf6a] {
        font-family: var(--font-display);
        margin: 0.125rem 0 0;
        font-size: 1rem;
        font-weight: 700;
        color: #1c2b38;
    }

.filter-label[b-tm6tqkzf6a] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .filter-label i[b-tm6tqkzf6a] {
        color: #3f9c8a;
        font-size: 0.9rem;
    }

.filter-meta[b-tm6tqkzf6a] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eef7f4;
    color: #256657;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.period-range-picker[b-tm6tqkzf6a] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.period-range-btn[b-tm6tqkzf6a] {
    padding: 0.55rem 0.95rem;
    border: 1.5px solid #dbe4ea;
    border-radius: 999px;
    background: white;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .period-range-btn:hover[b-tm6tqkzf6a] {
        border-color: #3f9c8a;
        color: #3f9c8a;
        background: rgba(63, 156, 138, 0.06);
        transform: translateY(-1px);
    }

    .period-range-btn.active[b-tm6tqkzf6a] {
        border-color: #3f9c8a;
        background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
        color: white;
        box-shadow: 0 8px 18px rgba(63, 156, 138, 0.25);
    }

/* Skeleton (estado de carregamento) */
.dashboard-skeleton[b-tm6tqkzf6a] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-card[b-tm6tqkzf6a] {
    border-radius: 16px;
    background: linear-gradient(100deg, #eef1f4 30%, #f7f9fb 50%, #eef1f4 70%);
    background-size: 200% 100%;
    animation: shimmer-b-tm6tqkzf6a 1.4s ease-in-out infinite;
    border: 1px solid #e2e8f0;
}

.skeleton-kpi[b-tm6tqkzf6a] {
    height: 92px;
}

.skeleton-block[b-tm6tqkzf6a] {
    height: 140px;
}

@keyframes shimmer-b-tm6tqkzf6a {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Dashboard grid geral */
.dashboard-grid[b-tm6tqkzf6a] {
    display: grid;
    gap: 1rem;
}

.dashboard-kpis[b-tm6tqkzf6a] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-grid[b-tm6tqkzf6a],
.source-grid[b-tm6tqkzf6a] {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dashboard-card[b-tm6tqkzf6a],
.status-card[b-tm6tqkzf6a],
.source-card[b-tm6tqkzf6a],
.dashboard-empty[b-tm6tqkzf6a] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .status-card:hover[b-tm6tqkzf6a],
    .source-card:hover[b-tm6tqkzf6a] {
        transform: translateY(-3px);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
    }

.dashboard-card[b-tm6tqkzf6a] {
    padding: 1.1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-card-primary[b-tm6tqkzf6a] {
    background: linear-gradient(135deg, #1c2b38 0%, #24384b 100%);
    color: white;
}

.dashboard-card-accent[b-tm6tqkzf6a] {
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    color: white;
}

.dashboard-card-warm[b-tm6tqkzf6a] {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

.dashboard-card-cool[b-tm6tqkzf6a] {
    background: linear-gradient(135deg, #2563eb 0%, #1c2b38 100%);
    color: white;
}

.card-icon[b-tm6tqkzf6a],
.status-icon[b-tm6tqkzf6a],
.source-icon[b-tm6tqkzf6a] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.2rem;
}

.dashboard-card .card-icon[b-tm6tqkzf6a] {
    background: rgba(255, 255, 255, 0.15);
}

.card-content[b-tm6tqkzf6a] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.card-label[b-tm6tqkzf6a] {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.card-value[b-tm6tqkzf6a] {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.1;
}

.card-caption[b-tm6tqkzf6a] {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Seções */
.dashboard-section[b-tm6tqkzf6a] {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.section-header-dashboard[b-tm6tqkzf6a] {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

    .section-header-dashboard h3[b-tm6tqkzf6a] {
        font-family: var(--font-display);
        margin: 0.15rem 0 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: #1e293b;
    }

.section-eyebrow[b-tm6tqkzf6a] {
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 700;
    color: #3f9c8a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-meta[b-tm6tqkzf6a] {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
}

/* Status e Source cards */
.status-card[b-tm6tqkzf6a],
.source-card[b-tm6tqkzf6a] {
    padding: 1rem;
    animation: cardIn-b-tm6tqkzf6a 0.35s ease-out backwards;
}

.status-grid .status-card:nth-child(1)[b-tm6tqkzf6a] {
    animation-delay: 0.02s;
}

.status-grid .status-card:nth-child(2)[b-tm6tqkzf6a] {
    animation-delay: 0.06s;
}

.status-grid .status-card:nth-child(3)[b-tm6tqkzf6a] {
    animation-delay: 0.10s;
}

.status-grid .status-card:nth-child(4)[b-tm6tqkzf6a] {
    animation-delay: 0.14s;
}

.source-grid .source-card:nth-child(1)[b-tm6tqkzf6a] {
    animation-delay: 0.02s;
}

.source-grid .source-card:nth-child(2)[b-tm6tqkzf6a] {
    animation-delay: 0.06s;
}

.source-grid .source-card:nth-child(3)[b-tm6tqkzf6a] {
    animation-delay: 0.10s;
}

.source-grid .source-card:nth-child(4)[b-tm6tqkzf6a] {
    animation-delay: 0.14s;
}

.source-grid .source-card:nth-child(5)[b-tm6tqkzf6a] {
    animation-delay: 0.18s;
}

.source-grid .source-card:nth-child(6)[b-tm6tqkzf6a] {
    animation-delay: 0.22s;
}

@keyframes cardIn-b-tm6tqkzf6a {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-card-header[b-tm6tqkzf6a],
.source-card-top[b-tm6tqkzf6a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.status-badge[b-tm6tqkzf6a],
.source-name[b-tm6tqkzf6a] {
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}

.status-count[b-tm6tqkzf6a],
.source-count[b-tm6tqkzf6a] {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}

.status-total[b-tm6tqkzf6a],
.source-total[b-tm6tqkzf6a] {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #334155;
}

/* Barra de proporção */
.progress-track[b-tm6tqkzf6a] {
    margin-top: 0.75rem;
    height: 6px;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
}

.progress-fill[b-tm6tqkzf6a] {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #3f9c8a, #6fd6c2);
    transition: width 0.5s ease;
}

.status-card.status-warn .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.status-card.status-info .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.status-card.status-danger .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.status-card.status-success .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.status-card.status-neutral .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.status-footnote[b-tm6tqkzf6a],
.source-metrics[b-tm6tqkzf6a] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: #64748b;
}

.status-icon[b-tm6tqkzf6a] {
    background: rgba(255, 255, 255, 0.16);
}

.status-card.status-warn[b-tm6tqkzf6a] {
    border-top: 4px solid #f59e0b;
}

.status-card.status-info[b-tm6tqkzf6a] {
    border-top: 4px solid #3b82f6;
}

.status-card.status-danger[b-tm6tqkzf6a] {
    border-top: 4px solid #ef4444;
}

.status-card.status-success[b-tm6tqkzf6a] {
    border-top: 4px solid #10b981;
}

.status-card.status-neutral[b-tm6tqkzf6a] {
    border-top: 4px solid #94a3b8;
}

.source-card[b-tm6tqkzf6a] {
    border-top: 4px solid #3f9c8a;
}

.source-vnda[b-tm6tqkzf6a] {
    border-top-color: #7c3aed;
}

.source-magento[b-tm6tqkzf6a] {
    border-top-color: #fb7185;
}

.source-nuvemshop[b-tm6tqkzf6a] {
    border-top-color: #0ea5e9;
}

.source-woocommerce[b-tm6tqkzf6a] {
    border-top-color: #22c55e;
}

.source-bling[b-tm6tqkzf6a] {
    border-top-color: #f59e0b;
}

.source-shopee[b-tm6tqkzf6a] {
    border-top-color: #ef4444;
}

.source-vnda .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.source-magento .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #fb7185, #fda4af);
}

.source-nuvemshop .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #0ea5e9, #7dd3fc);
}

.source-woocommerce .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #22c55e, #86efac);
}

.source-bling .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.source-shopee .progress-fill[b-tm6tqkzf6a] {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.source-icon[b-tm6tqkzf6a] {
    background: #f8fafc;
    color: #3f9c8a;
}

/* Callout de destaque (canal líder) */
.insight-callout[b-tm6tqkzf6a] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(63, 156, 138, 0.08), rgba(28, 43, 56, 0.05));
    border: 1px solid rgba(63, 156, 138, 0.25);
    color: #1c2b38;
    font-size: 0.875rem;
}

    .insight-callout i[b-tm6tqkzf6a] {
        font-size: 1.15rem;
        color: #3f9c8a;
        flex: 0 0 auto;
    }

    .insight-callout strong[b-tm6tqkzf6a] {
        color: #256657;
    }

/* Empty state */
.dashboard-empty[b-tm6tqkzf6a] {
    padding: 2.25rem 1.5rem;
    text-align: center;
    color: #64748b;
}

    .dashboard-empty i[b-tm6tqkzf6a] {
        display: block;
        font-size: 2.75rem;
        color: #3f9c8a;
        margin-bottom: 0.75rem;
    }

    .dashboard-empty h4[b-tm6tqkzf6a] {
        font-family: var(--font-display);
        margin: 0 0 0.35rem;
        color: #0f172a;
    }

/* Animações de entrada */
.pedidos-header[b-tm6tqkzf6a] {
    animation: slideDown-b-tm6tqkzf6a 0.4s ease-out;
}

.filter-card[b-tm6tqkzf6a] {
    animation: fadeInUp-b-tm6tqkzf6a 0.4s ease-out;
}

@keyframes slideDown-b-tm6tqkzf6a {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-tm6tqkzf6a {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Acessibilidade: respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .pedidos-header[b-tm6tqkzf6a],
    .filter-card[b-tm6tqkzf6a],
    .status-card[b-tm6tqkzf6a],
    .source-card[b-tm6tqkzf6a],
    .skeleton-card[b-tm6tqkzf6a] {
        animation: none;
    }

        .period-range-btn:hover[b-tm6tqkzf6a],
        .status-card:hover[b-tm6tqkzf6a],
        .source-card:hover[b-tm6tqkzf6a] {
            transform: none;
        }
}

/* Responsividade */
@media (max-width: 1100px) {
    .dashboard-kpis[b-tm6tqkzf6a] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .pedidos-header[b-tm6tqkzf6a] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .header-stats[b-tm6tqkzf6a] {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .pedidos-container[b-tm6tqkzf6a] {
        padding: 0.75rem;
    }

    .header-title[b-tm6tqkzf6a] {
        font-size: 1.25rem;
    }

    .section-header-dashboard[b-tm6tqkzf6a],
    .status-footnote[b-tm6tqkzf6a],
    .source-metrics[b-tm6tqkzf6a],
    .header-stats[b-tm6tqkzf6a] {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-kpis[b-tm6tqkzf6a],
    .status-grid[b-tm6tqkzf6a],
    .source-grid[b-tm6tqkzf6a] {
        grid-template-columns: 1fr;
    }

    .dashboard-card[b-tm6tqkzf6a] {
        align-items: flex-start;
    }

    .card-value[b-tm6tqkzf6a] {
        font-size: 1.45rem;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* ============================================
   Login - identidade visual do cliente (AlphaInd)
   Paleta: navy petróleo + verde-água (teal)
   ============================================ */

/* Reset & Base */
html[b-c0m6dxyfjd], body[b-c0m6dxyfjd] {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#app[b-c0m6dxyfjd] {
    height: 100%;
}

/* Wrapper */
.login-wrapper[b-c0m6dxyfjd] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1c2b38 0%, #2c4356 55%, #24404a 100%);
    color-scheme: light;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

/* Background Decoration - padrão de pontos, ecoando o "@" do logo do cliente */
.bg-decoration[b-c0m6dxyfjd] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.5;
    background-image: radial-gradient(rgba(63, 156, 138, 0.35) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 70%);
}

.circle[b-c0m6dxyfjd] {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(63, 156, 138, 0.25), transparent 70%);
}

.circle-1[b-c0m6dxyfjd] {
    width: 520px;
    height: 520px;
    top: -260px;
    left: -220px;
    animation: float1-b-c0m6dxyfjd 22s ease-in-out infinite;
}

.circle-2[b-c0m6dxyfjd] {
    width: 420px;
    height: 420px;
    bottom: -220px;
    right: -180px;
    background: radial-gradient(circle at 60% 60%, rgba(44, 67, 86, 0.55), transparent 70%);
    animation: float2-b-c0m6dxyfjd 26s ease-in-out infinite;
}

.circle-3[b-c0m6dxyfjd] {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(63, 156, 138, 0.15), transparent 70%);
    animation: float3-b-c0m6dxyfjd 30s ease-in-out infinite;
}

@keyframes float1-b-c0m6dxyfjd {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }
}

@keyframes float2-b-c0m6dxyfjd {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, -50px);
    }
}

@keyframes float3-b-c0m6dxyfjd {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Container */
.login-container[b-c0m6dxyfjd] {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

/* Login Card */
.login-card[b-c0m6dxyfjd] {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(10, 20, 30, 0.45);
    padding: 2.5rem 2rem;
    animation: slideUp-b-c0m6dxyfjd 0.6s ease-out;
    border-top: 4px solid #3f9c8a;
}

@keyframes slideUp-b-c0m6dxyfjd {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.login-header[b-c0m6dxyfjd] {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container[b-c0m6dxyfjd] {
    margin-bottom: 1.5rem;
}

.logo-icon[b-c0m6dxyfjd] {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2c4356 0%, #1c2b38 100%);
    border: 2px solid #3f9c8a;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(28, 43, 56, 0.35);
    animation: pulse-b-c0m6dxyfjd 2.4s ease-in-out infinite;
}

    .logo-icon i[b-c0m6dxyfjd] {
        font-size: 2.25rem;
        color: #3f9c8a;
    }

@keyframes pulse-b-c0m6dxyfjd {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(28, 43, 56, 0.35);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 32px rgba(63, 156, 138, 0.4);
    }
}

.brand-title[b-c0m6dxyfjd] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.4rem 0;
    letter-spacing: -0.5px;
}

.brand-subtitle[b-c0m6dxyfjd] {
    font-size: 0.8125rem;
    color: #3f9c8a;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Form */
.login-form[b-c0m6dxyfjd] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-modern[b-c0m6dxyfjd] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-modern[b-c0m6dxyfjd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

    .form-label-modern i[b-c0m6dxyfjd] {
        color: #3f9c8a;
        font-size: 1rem;
    }

.input-wrapper[b-c0m6dxyfjd] {
    position: relative;
}

    .input-wrapper[b-c0m6dxyfjd]::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #cbd5e1;
        transition: background 0.25s ease;
        pointer-events: none;
    }

    .input-wrapper:focus-within[b-c0m6dxyfjd]::before {
        background: #3f9c8a;
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.2);
    }

.form-input-modern[b-c0m6dxyfjd] {
    width: 100%;
    padding: 0.9375rem 1rem 0.9375rem 1.9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: #1e293b;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    background: #f8fafc;
    box-sizing: border-box;
}

[b-c0m6dxyfjd] .form-input-modern {
    width: 100%;
    padding: 0.9375rem 1rem 0.9375rem 1.9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: #1e293b;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    background: #f8fafc;
    box-sizing: border-box;
}

.form-input-modern:hover[b-c0m6dxyfjd] {
    border-color: #cbd5e1;
}

[b-c0m6dxyfjd] .form-input-modern:hover {
    border-color: #cbd5e1;
}

.form-input-modern:focus[b-c0m6dxyfjd] {
    outline: none;
    border-color: #3f9c8a;
    background: white;
    box-shadow: 0 0 0 4px rgba(63, 156, 138, 0.12);
}

[b-c0m6dxyfjd] .form-input-modern:focus {
    outline: none;
    border-color: #3f9c8a;
    background: white;
    box-shadow: 0 0 0 4px rgba(63, 156, 138, 0.12);
}

.form-input-modern:focus[b-c0m6dxyfjd]::placeholder {
    color: #cbd5e1;
}

[b-c0m6dxyfjd] .form-input-modern:focus::placeholder {
    color: #cbd5e1;
}

.form-input-modern[b-c0m6dxyfjd]::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

[b-c0m6dxyfjd] .form-input-modern::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-input-modern:valid:not(:placeholder-shown)[b-c0m6dxyfjd] {
    border-color: #cbd5e1;
    background: #ffffff;
}

[b-c0m6dxyfjd] .form-input-modern:valid:not(:placeholder-shown) {
    border-color: #cbd5e1;
    background: #ffffff;
}

.form-input-modern:-webkit-autofill[b-c0m6dxyfjd],
.form-input-modern:-webkit-autofill:hover[b-c0m6dxyfjd],
.form-input-modern:-webkit-autofill:focus[b-c0m6dxyfjd],
.form-input-modern:-webkit-autofill:active[b-c0m6dxyfjd] {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #1e293b !important;
    caret-color: #1e293b;
}

[b-c0m6dxyfjd] .form-input-modern:-webkit-autofill,
[b-c0m6dxyfjd] .form-input-modern:-webkit-autofill:hover,
[b-c0m6dxyfjd] .form-input-modern:-webkit-autofill:focus,
[b-c0m6dxyfjd] .form-input-modern:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #1e293b !important;
    caret-color: #1e293b;
}

/* Button */
.btn-login-modern[b-c0m6dxyfjd] {
    margin: 0.5rem auto 0 auto;
    display: block;
    width: fit-content;
    min-width: 220px;
    padding: 0.875rem 2.25rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 156, 138, 0.35);
}

    .btn-login-modern:hover[b-c0m6dxyfjd] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(63, 156, 138, 0.45);
    }

    .btn-login-modern:active[b-c0m6dxyfjd] {
        transform: translateY(0);
    }

.btn-content[b-c0m6dxyfjd] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

    .btn-content i[b-c0m6dxyfjd] {
        font-size: 1.125rem;
    }

.btn-shine[b-c0m6dxyfjd] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
}

.btn-login-modern:hover .btn-shine[b-c0m6dxyfjd] {
    animation: shine-b-c0m6dxyfjd 0.8s;
}

@keyframes shine-b-c0m6dxyfjd {
    to {
        left: 150%;
    }
}

/* Alert Error */
.alert-error[b-c0m6dxyfjd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    border-radius: 10px;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 500;
    animation: shake-b-c0m6dxyfjd 0.5s;
}

@keyframes shake-b-c0m6dxyfjd {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

.alert-icon[b-c0m6dxyfjd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fee2e2;
    border-radius: 50%;
    flex-shrink: 0;
}

    .alert-icon i[b-c0m6dxyfjd] {
        font-size: 1rem;
    }

/* Validation */
.validation-error[b-c0m6dxyfjd] {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

[b-c0m6dxyfjd] .validation-error {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.validation-error[b-c0m6dxyfjd]::before {
    content: '?';
    font-size: 0.5rem;
}

[b-c0m6dxyfjd] .validation-error::before {
    content: '?';
    font-size: 0.5rem;
}

/* Footer */
.login-footer[b-c0m6dxyfjd] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1.5px solid #e2e8f0;
    text-align: center;
}

.footer-text[b-c0m6dxyfjd] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
}

    .footer-text i[b-c0m6dxyfjd] {
        color: #3f9c8a;
        font-size: 1rem;
    }

/* Version Info */
.version-info[b-c0m6dxyfjd] {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 640px) {
    .login-card[b-c0m6dxyfjd] {
        padding: 2rem 1.5rem;
    }

    .brand-title[b-c0m6dxyfjd] {
        font-size: 1.5rem;
    }

    .logo-icon[b-c0m6dxyfjd] {
        width: 68px;
        height: 68px;
    }

        .logo-icon i[b-c0m6dxyfjd] {
            font-size: 1.9rem;
        }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .login-card[b-c0m6dxyfjd],
    .logo-icon[b-c0m6dxyfjd],
    .circle[b-c0m6dxyfjd],
    .btn-shine[b-c0m6dxyfjd],
    .alert-error[b-c0m6dxyfjd] {
        animation: none !important;
    }

    .btn-login-modern:hover[b-c0m6dxyfjd] {
        transform: none;
    }
}
/* /Components/Pages/LogsAtualizacao.razor.rz.scp.css */
/* ==========================================================================
   Layout principal
   ========================================================================== */
.dd-logs-layout[b-3dr9hqwpdo] {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 6rem);
    background-color: #f5f6fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2d3748;
    overflow: hidden;
}

.dd-main-content[b-3dr9hqwpdo] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    min-width: 0; /* essencial para o flex child não estourar */
    overflow: hidden;
}

/* ==========================================================================
   Header
   ========================================================================== */
.dd-logs-header[b-3dr9hqwpdo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.dd-header-left[b-3dr9hqwpdo] {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.dd-brand-badge[b-3dr9hqwpdo] {
    background: linear-gradient(135deg, #632ca6, #4d52b9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 3px 7px;
    border-radius: 4px;
}

.dd-header-title[b-3dr9hqwpdo] {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    color: #1a202c;
}

.dd-header-subtitle[b-3dr9hqwpdo] {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
}

    .dd-header-subtitle code[b-3dr9hqwpdo] {
        background: #eef0f7;
        border-radius: 3px;
        padding: 1px 5px;
        color: #4d52b9;
        font-size: 11px;
    }

.dd-header-actions[b-3dr9hqwpdo] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   Botões
   ========================================================================== */
.dd-btn[b-3dr9hqwpdo] {
    background: #fff;
    border: 1px solid #d7dce3;
    color: #4a5568;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .12s ease, border-color .12s ease, color .12s ease;
}

    .dd-btn:hover[b-3dr9hqwpdo] {
        background: #f3f4f7;
        border-color: #c3c9d4;
    }

    .dd-btn:disabled[b-3dr9hqwpdo] {
        opacity: .6;
        cursor: default;
    }

.dd-btn-active[b-3dr9hqwpdo] {
    background: #eef2ff;
    color: #4d52b9;
    border-color: #c7ceff;
}

/* Status Live */
.dd-refresh-status[b-3dr9hqwpdo] {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

    .dd-refresh-status.active[b-3dr9hqwpdo] {
        color: #2f855a;
    }

.dd-dot[b-3dr9hqwpdo] {
    width: 7px;
    height: 7px;
    background-color: #cbd5e0;
    border-radius: 50%;
}

.dd-refresh-status.active .dd-dot[b-3dr9hqwpdo] {
    background-color: #48bb78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, .18);
    animation: dd-pulse-b-3dr9hqwpdo 1.6s ease-in-out infinite;
}

@keyframes dd-pulse-b-3dr9hqwpdo {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(72, 187, 120, .18);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(72, 187, 120, .28);
    }
}

/* ==========================================================================
   Toolbar (busca + filtro de nível)
   ========================================================================== */
.dd-logs-toolbar[b-3dr9hqwpdo] {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 6px 6px 0 0;
}

.dd-search-box[b-3dr9hqwpdo] {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #d7dce3;
    border-radius: 5px;
    padding: 5px 10px;
    gap: 8px;
    background: #fafbfc;
}

    .dd-search-box i[b-3dr9hqwpdo] {
        color: #a0aec0;
    }

    .dd-search-box input[b-3dr9hqwpdo] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 13px;
        background: transparent;
    }

.clear-icon[b-3dr9hqwpdo] {
    color: #a0aec0;
    cursor: pointer;
}

    .clear-icon:hover[b-3dr9hqwpdo] {
        color: #718096;
    }

.dd-filter-box select[b-3dr9hqwpdo] {
    border: 1px solid #d7dce3;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 13px;
    background: #fafbfc;
    color: #4a5568;
}

/* ==========================================================================
   Seletor de intervalo de tempo (estilo Datadog: 15m / 1h / 4h / 1d ...)
   ========================================================================== */
.dd-time-range-row[b-3dr9hqwpdo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #fff;
    padding: 6px 8px;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.dd-time-range-label[b-3dr9hqwpdo] {
    font-size: 11px;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding-left: 4px;
}

.dd-time-range-picker[b-3dr9hqwpdo] {
    display: inline-flex;
    align-items: center;
    background: #f1f3f8;
    border-radius: 6px;
    padding: 2px;
    gap: 2px;
}

.dd-range-btn[b-3dr9hqwpdo] {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: background .12s ease, color .12s ease;
}

    .dd-range-btn:hover[b-3dr9hqwpdo] {
        color: #4d52b9;
    }

    .dd-range-btn.active[b-3dr9hqwpdo] {
        background: #4d52b9;
        color: #fff;
        box-shadow: 0 1px 2px rgba(77, 82, 185, .35);
    }

.dd-range-custom[b-3dr9hqwpdo] {
    border-left: 1px solid #dde1ea;
    margin-left: 2px;
    padding-left: 6px;
}

.dd-custom-range[b-3dr9hqwpdo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

    .dd-custom-range input[type="datetime-local"][b-3dr9hqwpdo] {
        border: 1px solid #d7dce3;
        border-radius: 5px;
        padding: 4px 6px;
        font-size: 12px;
        color: #4a5568;
        background: #fafbfc;
    }

/* ==========================================================================
   Tabela
   ========================================================================== */
.dd-table-container[b-3dr9hqwpdo] {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.dd-table[b-3dr9hqwpdo] {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 12px;
}

    .dd-table th[b-3dr9hqwpdo] {
        background: #f7fafc;
        position: sticky;
        top: 0;
        z-index: 10;
        color: #4a5568;
        font-weight: 700;
        padding: 8px 10px;
        border-bottom: 1px solid #e2e8f0;
        text-align: left;
    }

    .dd-table tbody tr[b-3dr9hqwpdo] {
        border-bottom: 1px solid #edf2f7;
        cursor: pointer;
        transition: background-color .1s ease;
    }

        .dd-table tbody tr:hover[b-3dr9hqwpdo] {
            background-color: #f7fafc;
        }

tr.has-error[b-3dr9hqwpdo] {
    background-color: #fff5f5;
}

tr.dd-row-selected[b-3dr9hqwpdo] {
    background-color: #eef2ff !important;
    box-shadow: inset 2px 0 0 #4d52b9;
}

.dd-table td[b-3dr9hqwpdo] {
    padding: 6px 10px;
    vertical-align: top;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Tipografia das células */
.dd-cell-time[b-3dr9hqwpdo] {
    color: #94a3b8;
    font-family: Consolas, Menlo, monospace;
    font-size: 11px;
}

.dd-cell-context[b-3dr9hqwpdo] {
    color: #4a5568;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dd-cell-message[b-3dr9hqwpdo] {
    text-overflow: ellipsis;
    overflow: hidden;
}

.dd-message-wrapper[b-3dr9hqwpdo] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.dd-text-mono[b-3dr9hqwpdo] {
    font-family: Consolas, Menlo, monospace;
    color: #1a202c;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dd-error-inline[b-3dr9hqwpdo] {
    font-size: 11px;
    color: #e53e3e;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Badges de nível */
.dd-badge-level[b-3dr9hqwpdo] {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    width: 100%;
    letter-spacing: .02em;
}

.dd-lvl-verbose[b-3dr9hqwpdo] {
    background: #edf2f7;
    color: #4a5568;
}

.dd-lvl-debug[b-3dr9hqwpdo] {
    background: #e2e8f0;
    color: #2d3748;
}

.dd-lvl-info[b-3dr9hqwpdo] {
    background: #ebf8ff;
    color: #2b6cb0;
}

.dd-lvl-warn[b-3dr9hqwpdo] {
    background: #feebc8;
    color: #c05621;
}

.dd-lvl-error[b-3dr9hqwpdo] {
    background: #fed7d7;
    color: #9b2c2c;
}

.dd-lvl-fatal[b-3dr9hqwpdo] {
    background: #9b2c2c;
    color: #fff;
}

/* Estados vazios / carregando */
.dd-loading[b-3dr9hqwpdo],
.dd-empty-state[b-3dr9hqwpdo] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #a0aec0;
    padding: 40px 20px;
    text-align: center;
}

    .dd-loading span[b-3dr9hqwpdo] {
        font-size: 13px;
    }

.dd-spinner[b-3dr9hqwpdo] {
    width: 26px;
    height: 26px;
    border: 3px solid #e2e8f0;
    border-top-color: #4d52b9;
    border-radius: 50%;
    animation: dd-spin-b-3dr9hqwpdo 0.8s linear infinite;
}

.dd-empty-state i[b-3dr9hqwpdo] {
    font-size: 28px;
    color: #cbd5e0;
}

.dd-empty-state h3[b-3dr9hqwpdo] {
    margin: 4px 0 0;
    font-size: 14px;
    color: #4a5568;
}

.dd-empty-state p[b-3dr9hqwpdo] {
    margin: 0;
    font-size: 12px;
    color: #a0aec0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.dd-footer[b-3dr9hqwpdo] {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 6px 12px;
    font-size: 11px;
    color: #4a5568;
}

.dd-footer-item[b-3dr9hqwpdo] {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.ms-auto[b-3dr9hqwpdo] {
    margin-left: auto;
}

.text-info[b-3dr9hqwpdo] {
    color: #3182ce;
}

.text-warning[b-3dr9hqwpdo] {
    color: #dd6b20;
}

.text-danger[b-3dr9hqwpdo] {
    color: #e53e3e;
}

/* ==========================================================================
   Painel lateral de detalhes (estilo Datadog)
   ========================================================================== */
.dd-side-panel[b-3dr9hqwpdo] {
    width: 0;
    flex-shrink: 0;
    background: #fff;
    border-left: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: width .18s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, .04);
}

    .dd-side-panel.open[b-3dr9hqwpdo] {
        width: 420px;
    }

.dd-panel-header[b-3dr9hqwpdo] {
    padding: 14px 18px;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.dd-panel-title-area[b-3dr9hqwpdo] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

    .dd-panel-title-area h3[b-3dr9hqwpdo] {
        margin: 0;
        font-size: 14px;
        font-weight: 700;
        color: #1a202c;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dd-panel-title-area .dd-badge-level[b-3dr9hqwpdo] {
        width: auto;
        padding: 2px 6px;
    }

.dd-panel-id[b-3dr9hqwpdo] {
    color: #a0aec0;
    font-weight: 400;
    font-size: 12px;
}

.dd-close-btn[b-3dr9hqwpdo] {
    background: none;
    border: none;
    font-size: 16px;
    color: #718096;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
    flex-shrink: 0;
}

    .dd-close-btn:hover[b-3dr9hqwpdo] {
        color: #2d3748;
    }

.dd-panel-body[b-3dr9hqwpdo] {
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dd-panel-section label[b-3dr9hqwpdo] {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #a0aec0;
    margin-bottom: 5px;
}

.dd-panel-val[b-3dr9hqwpdo] {
    font-size: 13px;
    color: #2d3748;
    word-break: break-word;
}

    .dd-panel-val code[b-3dr9hqwpdo] {
        background: #eef0f7;
        border-radius: 3px;
        padding: 1px 5px;
        font-size: 12px;
        color: #4d52b9;
    }

.dd-code-block[b-3dr9hqwpdo] {
    font-family: Consolas, Menlo, monospace;
    font-size: 12px;
    padding: 12px;
    border-radius: 5px;
    white-space: pre-wrap;
    word-break: break-word;
    border: 1px solid #e2e8f0;
    max-height: 320px;
    overflow-y: auto;
}

.bg-dark[b-3dr9hqwpdo] {
    background: #1a202c;
}

.text-white[b-3dr9hqwpdo] {
    color: #f7fafc;
}

.json-block[b-3dr9hqwpdo] {
    background: #f8fafc;
    color: #2d3748;
}

.exception-block[b-3dr9hqwpdo] {
    background: #fff5f5;
    color: #9b2c2c;
    border-color: #fed7d7;
}

/* ==========================================================================
   Utilitários
   ========================================================================== */
.spin[b-3dr9hqwpdo] {
    animation: dd-spin-b-3dr9hqwpdo 1s linear infinite;
}

@keyframes dd-spin-b-3dr9hqwpdo {
    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Pages/ModalDetalhesPedido.razor.rz.scp.css */
/* ============================================
   Modal de Detalhes do Pedido - identidade AlphaInd
   Paleta: navy petr�leo (#1c2b38 / #2c4356) + verde-�gua (#3f9c8a)
   ============================================ */

.modal-overlay[b-76znpawt8r] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 20, 27, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    animation: fadeIn-b-76znpawt8r 0.25s ease;
    outline: none;
}

.modal-container-pedido[b-76znpawt8r] {
    background: white;
    border-radius: 18px;
    box-shadow: 0 30px 60px -15px rgba(10, 20, 30, 0.4), 0 0 0 1px rgba(63, 156, 138, 0.08);
    max-width: 1020px;
    width: 100%;
    height: min(92vh, 800px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp-b-76znpawt8r 0.3s cubic-bezier(.16,.84,.44,1);
}

/* Loading */
.modal-loading[b-76znpawt8r] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
    font-weight: 600;
}

.spinner-lg[b-76znpawt8r] {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #3f9c8a;
    border-radius: 50%;
    animation: spin-b-76znpawt8r 0.8s linear infinite;
}

/* Header */
.modal-header-pedido[b-76znpawt8r] {
    padding: 1.35rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    color: white;
    border-bottom: 3px solid #3f9c8a;
    flex-shrink: 0;
}

.modal-title-area[b-76znpawt8r] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon-wrap[b-76znpawt8r] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(111, 214, 194, 0.15);
    border: 1px solid rgba(111, 214, 194, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .modal-icon-wrap i[b-76znpawt8r] {
        font-size: 1.4rem;
        color: #6fd6c2;
    }

.modal-title-area h2[b-76znpawt8r] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.modal-subtitle[b-76znpawt8r] {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-close[b-76znpawt8r] {
    width: 38px;
    height: 38px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

    .btn-close:hover[b-76znpawt8r] {
        background: rgba(239, 68, 68, 0.85);
        transform: rotate(90deg);
    }

/* Resumo r�pido */
.resumo-rapido[b-76znpawt8r] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.resumo-card[b-76znpawt8r] {
    background: #f8fafc;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .resumo-card i[b-76znpawt8r] {
        font-size: 1.1rem;
        color: #3f9c8a;
        flex-shrink: 0;
    }

    .resumo-card label[b-76znpawt8r] {
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.15rem;
    }

    .resumo-card span[b-76znpawt8r] {
        font-size: 0.85rem;
        font-weight: 600;
        color: #1e293b;
    }

.resumo-total[b-76znpawt8r] {
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
}

    .resumo-total i[b-76znpawt8r],
    .resumo-total label[b-76znpawt8r] {
        color: rgba(255, 255, 255, 0.85);
    }

    .resumo-total span[b-76znpawt8r] {
        color: white;
        font-size: 1rem;
        font-weight: 700;
    }

/* Tabs */
.modal-tabs-pedido[b-76znpawt8r] {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 0 1.75rem;
    flex-shrink: 0;
}

.tab-btn-pedido[b-76znpawt8r] {
    padding: 0.9rem 1.5rem;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    position: relative;
}

    .tab-btn-pedido:hover[b-76znpawt8r] {
        color: #3f9c8a;
        background: rgba(63, 156, 138, 0.06);
    }

    .tab-btn-pedido.active[b-76znpawt8r] {
        color: #2c4356;
        border-bottom-color: #3f9c8a;
        background: white;
    }

.tab-count[b-76znpawt8r] {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
}

.tab-btn-pedido.active .tab-count[b-76znpawt8r] {
    background: #3f9c8a;
    color: white;
}

/* Body */
.modal-body-pedido[b-76znpawt8r] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 0;
}

.tab-content-pedido[b-76znpawt8r] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 0;
    height: 100%;
    animation: fadeIn-b-76znpawt8r 0.25s ease;
}

/* Sections */
.info-section[b-76znpawt8r] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.2s ease;
}

.produtos-section[b-76znpawt8r] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.section-header[b-76znpawt8r] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

    .section-header i[b-76znpawt8r] {
        font-size: 1.15rem;
        color: #3f9c8a;
    }

    .section-header h3[b-76znpawt8r] {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        color: #1e293b;
    }

/* Info Grid */
.info-grid[b-76znpawt8r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item[b-76znpawt8r] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

    .info-item.span-2[b-76znpawt8r] {
        grid-column: span 2;
    }

    .info-item label[b-76znpawt8r] {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.72rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

        .info-item label i[b-76znpawt8r] {
            font-size: 0.8rem;
            color: #3f9c8a;
        }

.info-value[b-76znpawt8r] {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
}

.pedido-id[b-76znpawt8r] {
    font-family: 'Courier New', monospace;
    color: #2c4356;
    font-weight: 700;
    font-size: 1rem;
}

.valor[b-76znpawt8r] {
    color: #059669;
    font-weight: 600;
}

.valor-desconto[b-76znpawt8r] {
    color: #dc2626;
    font-weight: 600;
}

.total-destaque[b-76znpawt8r] {
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    padding: 1rem;
    border-radius: 10px;
}

    .total-destaque label[b-76znpawt8r] {
        color: rgba(255, 255, 255, 0.9);
    }

        .total-destaque label i[b-76znpawt8r] {
            color: rgba(255, 255, 255, 0.9);
        }

.valor-total[b-76znpawt8r] {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Status Badge */
.status-badge[b-76znpawt8r] {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    width: fit-content;
}

.status-em-processamento[b-76znpawt8r], .status-processing[b-76znpawt8r],
.status-aguardando-pagamento[b-76znpawt8r], .status-pendente[b-76znpawt8r], .status-pending[b-76znpawt8r] {
    background: #fef3c7;
    color: #92400e;
}

.status-aprovado[b-76znpawt8r], .status-approved[b-76znpawt8r], .status-concluido[b-76znpawt8r], .status-completed[b-76znpawt8r],
.status-entregue[b-76znpawt8r], .status-delivered[b-76znpawt8r] {
    background: #d1fae5;
    color: #065f46;
}

.status-recusado[b-76znpawt8r], .status-denied[b-76znpawt8r], .status-estornado[b-76znpawt8r], .status-payment-refunded[b-76znpawt8r],
.status-erro[b-76znpawt8r], .status-error[b-76znpawt8r] {
    background: #fee2e2;
    color: #991b1b;
}

.status-faturado[b-76znpawt8r], .status-invoiced[b-76znpawt8r], .status-pronto-para-envio[b-76znpawt8r], .status-ready-to-ship[b-76znpawt8r],
.status-enviado[b-76znpawt8r], .status-shipped[b-76znpawt8r], .status-em-transito[b-76znpawt8r], .status-in-transit[b-76znpawt8r] {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-devolvido[b-76znpawt8r], .status-returned[b-76znpawt8r], .status-reembolsado[b-76znpawt8r], .status-refunded[b-76znpawt8r] {
    background: #ede9fe;
    color: #6d28d9;
}

.status-cancelado[b-76znpawt8r], .status-cancelled[b-76znpawt8r] {
    background: #f3f4f6;
    color: #6b7280;
}

.status-em-espera[b-76znpawt8r], .status-on-hold[b-76znpawt8r] {
    background: #e0e7ff;
    color: #3730a3;
}

.status-desconhecido[b-76znpawt8r], .status-default[b-76znpawt8r] {
    background: #f1f5f9;
    color: #475569;
}

.source-badge[b-76znpawt8r] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #e2e8f0;
    color: #1e293b;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
}

/* Empty state */
.empty-state[b-76znpawt8r] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 2.5rem 0;
}

    .empty-state i[b-76znpawt8r] {
        font-size: 2rem;
        color: #cbd5e1;
    }

/* Tabela de Produtos */
.produtos-table-wrapper[b-76znpawt8r] {
    overflow: auto;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    flex: 1;
}

.produtos-table[b-76znpawt8r] {
    width: 100%;
    border-collapse: collapse;
}

    .produtos-table thead[b-76znpawt8r] {
        background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .produtos-table th[b-76znpawt8r] {
        padding: 0.75rem 1rem;
        text-align: left;
        font-size: 0.75rem;
        font-weight: 700;
        color: #1e293b;
        border-bottom: 2px solid #e2e8f0;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .produtos-table td[b-76znpawt8r] {
        padding: 0.85rem 1rem;
        font-size: 0.875rem;
        border-bottom: 1px solid #f1f5f9;
    }

    .produtos-table tbody tr:nth-child(even)[b-76znpawt8r] {
        background: #fafcfd;
    }

    .produtos-table tbody tr:hover[b-76znpawt8r] {
        background: rgba(63, 156, 138, 0.06);
    }

    .produtos-table tfoot[b-76znpawt8r] {
        background: #f8fafc;
        font-weight: 700;
        position: sticky;
        bottom: 0;
    }

        .produtos-table tfoot td[b-76znpawt8r] {
            padding: 1rem;
            border-bottom: none;
            border-top: 2px solid #e2e8f0;
        }

.produto-sku[b-76znpawt8r] {
    font-family: 'Courier New', monospace;
    color: #2c4356;
    font-weight: 700;
    background: #e7f4f1;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
}

.produto-nome[b-76znpawt8r] {
    color: #1e293b;
}

.produto-preco[b-76znpawt8r], .produto-total[b-76znpawt8r] {
    color: #059669;
    font-weight: 600;
}

.produto-qtd[b-76znpawt8r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    background: #e7f4f1;
    color: #256657;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
}

.text-right[b-76znpawt8r] {
    text-align: right;
}

/* Footer */
.modal-footer-pedido[b-76znpawt8r] {
    padding: 1rem 1.75rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    flex-shrink: 0;
    gap: 1rem;
}

.footer-total[b-76znpawt8r] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

    .footer-total label[b-76znpawt8r] {
        font-size: 0.7rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .footer-total span[b-76znpawt8r] {
        font-size: 1.15rem;
        font-weight: 700;
        color: #2c4356;
    }

.footer-actions[b-76znpawt8r] {
    display: flex;
    gap: 0.75rem;
}

.btn-modal[b-76znpawt8r] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

    .btn-modal.btn-secondary[b-76znpawt8r] {
        background: white;
        color: #64748b;
        border: 1.5px solid #e2e8f0;
    }

        .btn-modal.btn-secondary:hover[b-76znpawt8r] {
            background: #f8fafc;
            border-color: #cbd5e1;
            color: #1e293b;
        }

    .btn-modal.btn-success[b-76znpawt8r] {
        background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(63, 156, 138, 0.35);
    }

        .btn-modal.btn-success:hover:not(:disabled)[b-76znpawt8r] {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(63, 156, 138, 0.45);
        }

    .btn-modal:disabled[b-76znpawt8r] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Spinner */
.spinner[b-76znpawt8r] {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin-b-76znpawt8r 0.75s linear infinite;
}

@keyframes spin-b-76znpawt8r {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn-b-76znpawt8r {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-76znpawt8r {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar */
.modal-body-pedido[b-76znpawt8r]::-webkit-scrollbar,
.produtos-table-wrapper[b-76znpawt8r]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.modal-body-pedido[b-76znpawt8r]::-webkit-scrollbar-track,
.produtos-table-wrapper[b-76znpawt8r]::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}

.modal-body-pedido[b-76znpawt8r]::-webkit-scrollbar-thumb,
.produtos-table-wrapper[b-76znpawt8r]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

    .modal-body-pedido[b-76znpawt8r]::-webkit-scrollbar-thumb:hover,
    .produtos-table-wrapper[b-76znpawt8r]::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* Responsividade */
@media (max-width: 768px) {
    .modal-container-pedido[b-76znpawt8r] {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh;
    }

    .resumo-rapido[b-76znpawt8r] {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid[b-76znpawt8r] {
        grid-template-columns: 1fr;
    }

    .info-item.span-2[b-76znpawt8r] {
        grid-column: span 1;
    }

    .produtos-table th[b-76znpawt8r], .produtos-table td[b-76znpawt8r] {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .modal-footer-pedido[b-76znpawt8r] {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-total[b-76znpawt8r] {
        align-items: center;
        text-align: center;
    }

    .footer-actions[b-76znpawt8r] {
        flex-direction: column-reverse;
    }

    .btn-modal[b-76znpawt8r] {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .modal-container-pedido[b-76znpawt8r] {
        background: #ffffff;
        color-scheme: light;
    }

    .modal-tabs-pedido[b-76znpawt8r] {
        background: #f8fafc;
    }

    .tab-btn-pedido.active[b-76znpawt8r] {
        background: #ffffff;
    }

    .info-section[b-76znpawt8r] {
        background: #ffffff;
        border-color: #e2e8f0;
    }

    .section-header[b-76znpawt8r] {
        border-bottom-color: #e2e8f0;
    }

    .produtos-table-wrapper[b-76znpawt8r] {
        background: #ffffff;
        border-color: #e2e8f0;
    }

    .produtos-table thead[b-76znpawt8r] {
        background: #f8fafc;
    }

    .produtos-table tbody tr:nth-child(even)[b-76znpawt8r] {
        background: #fafcfd;
    }

    .produtos-table tbody tr:hover[b-76znpawt8r] {
        background: rgba(63, 156, 138, 0.06);
    }

    .modal-footer-pedido[b-76znpawt8r] {
        background: #ffffff;
        border-top-color: #e2e8f0;
    }

    .btn-modal.btn-secondary[b-76znpawt8r] {
        background: #ffffff;
        color: #1e293b;
        border-color: #e2e8f0;
    }
}
/* /Components/Pages/ModalProduto.razor.rz.scp.css */
/* ============================================
   Modal com Abas (Produto/Upload) - identidade AlphaInd
   Paleta: navy petr�leo (#1c2b38 / #2c4356) + verde-�gua (#3f9c8a)
   ============================================ */

/* Modal Overlay */
.modal-overlay[b-oil6544qyn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 20, 27, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    animation: fadeIn-b-oil6544qyn 0.3s ease;
}

.modal-container[b-oil6544qyn] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(10, 20, 30, 0.35);
    width: min(92vw, 860px);
    max-width: 860px;
    height: min(90vh, 760px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp-b-oil6544qyn 0.3s ease;
}

/* Header */
.modal-header[b-oil6544qyn] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    border-bottom: 3px solid #3f9c8a;
}

.modal-title-area[b-oil6544qyn] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color:white;
}

    .modal-title-area i[b-oil6544qyn] {
        font-size: 1.75rem;
        color: #6fd6c2;
    }

    .modal-title-area h2[b-oil6544qyn] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 700;
    }

.modal-subtitle[b-oil6544qyn] {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 500;
    color:white;
}

.btn-close[b-oil6544qyn] {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .btn-close:hover[b-oil6544qyn] {
        background: rgba(239, 68, 68, 0.8);
        transform: rotate(90deg);
    }

/* Tabs */
.modal-tabs[b-oil6544qyn] {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 0 1.5rem;
}

.tab-btn[b-oil6544qyn] {
    padding: 0.875rem 1.5rem;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

    .tab-btn:hover[b-oil6544qyn] {
        color: #3f9c8a;
        background: rgba(63, 156, 138, 0.06);
    }

    .tab-btn.active[b-oil6544qyn] {
        color: #2c4356;
        border-bottom-color: #3f9c8a;
        background: white;
    }

/* Body */
.modal-body[b-oil6544qyn] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    min-height: 0;
}

.tab-content[b-oil6544qyn] {
    animation: fadeIn-b-oil6544qyn 0.3s ease;
}

.tab-content-fill[b-oil6544qyn] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

/* Formul�rio */
.form-row[b-oil6544qyn] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group[b-oil6544qyn] {
    margin-bottom: 1rem;
}

.form-label[b-oil6544qyn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

    .form-label i[b-oil6544qyn] {
        color: #3f9c8a;
    }

.form-input[b-oil6544qyn] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .form-input:focus[b-oil6544qyn] {
        outline: none;
        border-color: #3f9c8a;
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

    .form-input:read-only[b-oil6544qyn] {
        background: #f8fafc;
        color: #64748b;
    }

.form-textarea[b-oil6544qyn] {
    width: 100%;
    padding: 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .form-textarea:focus[b-oil6544qyn] {
        outline: none;
        border-color: #3f9c8a;
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

.form-hint[b-oil6544qyn] {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.envios-section[b-oil6544qyn] {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.envios-header[b-oil6544qyn] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
}

.envios-description[b-oil6544qyn] {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

.envios-count[b-oil6544qyn] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(63, 156, 138, 0.12);
    color: #2c4356;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.shopee-logistics-list[b-oil6544qyn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.65rem;
}

.shopee-logistics-group[b-oil6544qyn] {
    grid-column: 1 / -1;
}

.shopee-logistics-item[b-oil6544qyn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid #dbe4ee;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.shopee-logistics-item.selected[b-oil6544qyn] {
    border-color: #3f9c8a;
    background: rgba(63, 156, 138, 0.06);
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.08);
}

.shopee-logistics-item-text[b-oil6544qyn] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.shopee-logistics-item-text strong[b-oil6544qyn] {
    font-size: 0.92rem;
    color: #1e293b;
    font-weight: 700;
}

.shopee-logistics-item-text span[b-oil6544qyn] {
    font-size: 0.78rem;
    color: #64748b;
}

.shopee-logistics-switch[b-oil6544qyn] {
    margin: 0;
    padding-left: 1rem;
    flex-shrink: 0;
}

.shopee-logistics-switch .form-check-input[b-oil6544qyn] {
    width: 2.5rem;
    height: 1.35rem;
    cursor: pointer;
}

.shopee-logistics-switch .form-check-input:checked[b-oil6544qyn] {
    background-color: #3f9c8a;
    border-color: #3f9c8a;
}

.envios-loading[b-oil6544qyn],
.envios-empty[b-oil6544qyn] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
}

.envios-empty i[b-oil6544qyn] {
    font-size: 1.35rem;
    color: #94a3b8;
}

.envios-empty p[b-oil6544qyn] {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

.envios-grid[b-oil6544qyn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.75rem;
}

.envio-card[b-oil6544qyn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    border: 1px solid #dbe4ee;
    background: white;
}

.envio-card-main[b-oil6544qyn] {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.envio-card strong[b-oil6544qyn] {
    display: block;
    color: #1e293b;
    font-size: 0.9rem;
}

.envio-card small[b-oil6544qyn] {
    display: block;
    margin-top: 0.2rem;
    color: #64748b;
    font-size: 0.75rem;
}

.envio-status-dot[b-oil6544qyn] {
    width: 10px;
    height: 10px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
    flex: 0 0 auto;
}

.envio-id[b-oil6544qyn] {
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: rgba(44, 67, 86, 0.08);
    color: #2c4356;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Caso .form-input/.form-textarea estejam dentro de InputText/InputTextArea (CSS isolation) */
[b-oil6544qyn] .form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    [b-oil6544qyn] .form-input:focus {
        outline: none;
        border-color: #3f9c8a;
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

    [b-oil6544qyn] .form-input:read-only {
        background: #f8fafc;
        color: #64748b;
    }

[b-oil6544qyn] .form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    [b-oil6544qyn] .form-textarea:focus {
        outline: none;
        border-color: #3f9c8a;
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

/* Grade Table */
.grade-section[b-oil6544qyn] {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.grade-table-wrapper[b-oil6544qyn] {
    flex: 1;
    max-height: none;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.tab-content-fill .form-group[b-oil6544qyn] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.tab-content-fill .form-textarea[b-oil6544qyn] {
    flex: 1;
    min-height: 320px;
    resize: none;
}

.tab-content-fill .form-hint[b-oil6544qyn] {
    margin-top: 0.75rem;
}

.grade-table[b-oil6544qyn] {
    width: 100%;
    border-collapse: collapse;
}

    .grade-table thead[b-oil6544qyn] {
        position: sticky;
        top: 0;
        background: #f8fafc;
        z-index: 1;
    }

    .grade-table th[b-oil6544qyn] {
        padding: 0.625rem;
        text-align: left;
        font-size: 0.8rem;
        font-weight: 600;
        color: #1e293b;
        border-bottom: 2px solid #e2e8f0;
    }

    .grade-table td[b-oil6544qyn] {
        padding: 0.625rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #e2e8f0;
    }

/* Tags */
.tags-container[b-oil6544qyn] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    min-height: 60px;
    align-items: flex-start;
    align-content: flex-start;
}

.tag-item[b-oil6544qyn] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
}

    .tag-item button[b-oil6544qyn] {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

        .tag-item button:hover[b-oil6544qyn] {
            opacity: 1;
        }

.btn-add-tag[b-oil6544qyn] {
    padding: 0.375rem 0.875rem;
    background: white;
    border: 1.5px dashed #3f9c8a;
    color: #3f9c8a;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s ease;
}

    .btn-add-tag:hover[b-oil6544qyn] {
        background: rgba(63, 156, 138, 0.06);
    }

.tags-selector[b-oil6544qyn] {
    margin-top: 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.tags-search[b-oil6544qyn] {
    padding: 0.75rem;
    background: #f8fafc;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.btn-new-tag[b-oil6544qyn] {
    padding: 0.5rem 1rem;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

    .btn-new-tag:hover[b-oil6544qyn] {
        background: #059669;
    }

.tags-list[b-oil6544qyn] {
    max-height: 200px;
    overflow-y: auto;
    padding: 0.5rem;
}

.tag-option[b-oil6544qyn] {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

    .tag-option:hover[b-oil6544qyn] {
        background: rgba(63, 156, 138, 0.1);
        color: #2c4356;
    }

/* Upload Area */
.upload-section[b-oil6544qyn] {
    margin-bottom: 1.5rem;
}

.upload-area[b-oil6544qyn] {
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

    .upload-area:hover[b-oil6544qyn] {
        border-color: #3f9c8a;
        background: rgba(63, 156, 138, 0.06);
    }

    .upload-area i[b-oil6544qyn] {
        font-size: 3rem;
        color: #cbd5e1;
        display: block;
    }

    .upload-area h4[b-oil6544qyn] {
        margin: 0 0 0.5rem 0;
        color: #1e293b;
        font-size: 1rem;
    }

    .upload-area p[b-oil6544qyn] {
        margin: 0 0 0.5rem 0;
        color: #64748b;
        font-size: 0.875rem;
    }

    .upload-area small[b-oil6544qyn] {
        color: #94a3b8;
        font-size: 0.75rem;
    }

/* Images Preview */
.images-preview[b-oil6544qyn] {
    margin-top: 1.5rem;
}

.preview-header[b-oil6544qyn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

    .preview-title-block[b-oil6544qyn] {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        color: #1e293b;
        font-weight: 700;
    }

        .preview-title-block i[b-oil6544qyn] {
            font-size: 1.1rem;
            color: #3f9c8a;
        }

    .preview-header span[b-oil6544qyn] {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1e293b;
    }

.btn-clear-images[b-oil6544qyn] {
    padding: 0.5rem 1rem;
    background: white;
    border: 1.5px solid #ef4444;
    color: #ef4444;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s ease;
}

    .btn-clear-images:hover[b-oil6544qyn] {
        background: #ef4444;
        color: white;
    }

.images-grid[b-oil6544qyn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.image-preview-item[b-oil6544qyn] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .image-preview-item:hover[b-oil6544qyn] {
        border-color: #3f9c8a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.upload-preview-item[b-oil6544qyn] {
    grid-column: span 1;
    aspect-ratio: 1;
    min-height: 0;
}

    .image-preview-item img[b-oil6544qyn] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.image-overlay[b-oil6544qyn] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 0.75rem 0.5rem 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-preview-item:hover .image-overlay[b-oil6544qyn] {
    transform: translateY(0);
}

.image-name[b-oil6544qyn] {
    display: block;
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.btn-remove-image[b-oil6544qyn] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-preview-item:hover .btn-remove-image[b-oil6544qyn] {
    opacity: 1;
}

.btn-remove-image:hover[b-oil6544qyn] {
    background: #dc2626;
    transform: scale(1.1);
}

/* Footer */
.modal-footer[b-oil6544qyn] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #f8fafc;
    border-radius: 0 0 16px 16px;
}

.btn-modal[b-oil6544qyn] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-modal.btn-secondary[b-oil6544qyn] {
        background: white;
        color: #64748b;
        border: 1.5px solid #e2e8f0;
    }

        .btn-modal.btn-secondary:hover[b-oil6544qyn] {
            background: #f8fafc;
            border-color: #cbd5e1;
            color: #1e293b;
        }

    .btn-modal.btn-primary[b-oil6544qyn] {
        background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(63, 156, 138, 0.3);
    }

        .btn-modal.btn-primary:hover:not(:disabled)[b-oil6544qyn] {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(63, 156, 138, 0.4);
        }

    .btn-modal:disabled[b-oil6544qyn] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Spinner */
.spinner[b-oil6544qyn] {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin-b-oil6544qyn 0.75s linear infinite;
}

@keyframes spin-b-oil6544qyn {
    to {
        transform: rotate(360deg);
    }
}

/* Anima��es */
@keyframes fadeIn-b-oil6544qyn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-oil6544qyn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar customizada */
.modal-body[b-oil6544qyn]::-webkit-scrollbar,
.grade-table-wrapper[b-oil6544qyn]::-webkit-scrollbar,
.tags-list[b-oil6544qyn]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.modal-body[b-oil6544qyn]::-webkit-scrollbar-track,
.grade-table-wrapper[b-oil6544qyn]::-webkit-scrollbar-track,
.tags-list[b-oil6544qyn]::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 3px;
}

.modal-body[b-oil6544qyn]::-webkit-scrollbar-thumb,
.grade-table-wrapper[b-oil6544qyn]::-webkit-scrollbar-thumb,
.tags-list[b-oil6544qyn]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

    .modal-body[b-oil6544qyn]::-webkit-scrollbar-thumb:hover,
    .grade-table-wrapper[b-oil6544qyn]::-webkit-scrollbar-thumb:hover,
    .tags-list[b-oil6544qyn]::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* Responsividade */
@media (max-width: 768px) {
    .modal-container[b-oil6544qyn] {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header[b-oil6544qyn] {
        border-radius: 0;
    }

    .modal-footer[b-oil6544qyn] {
        border-radius: 0;
    }

    .form-row[b-oil6544qyn] {
        grid-template-columns: 1fr;
    }

    .modal-tabs[b-oil6544qyn] {
        overflow-x: auto;
    }

    .tab-btn[b-oil6544qyn] {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .images-grid[b-oil6544qyn] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .upload-area[b-oil6544qyn] {
        padding: 2rem 1rem;
    }

        .upload-area i[b-oil6544qyn] {
            font-size: 2rem;
        }

    .modal-footer[b-oil6544qyn] {
        flex-direction: column-reverse;
    }

    .btn-modal[b-oil6544qyn] {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .modal-container[b-oil6544qyn] {
        background: #ffffff;
        color-scheme: light;
    }

    .modal-tabs[b-oil6544qyn] {
        background: #f8fafc;
    }

    .tab-btn.active[b-oil6544qyn] {
        background: #ffffff;
    }

    .form-input[b-oil6544qyn],
    .form-textarea[b-oil6544qyn] {
        background: #ffffff;
        color: #1e293b;
        border-color: #e2e8f0;
    }

        .form-input:read-only[b-oil6544qyn] {
            background: #f8fafc;
            color: #64748b;
        }

    .tags-container[b-oil6544qyn] {
        border-color: #e2e8f0;
    }

    .upload-area[b-oil6544qyn] {
        background: #ffffff;
        border-color: #e2e8f0;
    }

    .modal-footer[b-oil6544qyn] {
        background: #ffffff;
    }

    .grade-table thead[b-oil6544qyn] {
        background: #f8fafc;
    }

    .tags-search[b-oil6544qyn] {
        background: #ffffff;
    }

    .tag-option[b-oil6544qyn] {
        background: #ffffff;
    }

    .btn-modal.btn-secondary[b-oil6544qyn] {
        background: #ffffff;
        color: #1e293b;
        border-color: #e2e8f0;
    }
}

/* Loading Overlay */
.loading-overlay[b-oil6544qyn] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 16px;
}

.loading-content[b-oil6544qyn] {
    text-align: center;
    padding: 2rem;
}

.loading-spinner[b-oil6544qyn] {
    width: 64px;
    height: 64px;
    border: 4px solid #e2e8f0;
    border-top-color: #3f9c8a;
    border-radius: 50%;
    animation: spin-b-oil6544qyn 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loading-content h3[b-oil6544qyn] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.loading-content p[b-oil6544qyn] {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

/* Spinner no Bot�o */
.spinner-btn[b-oil6544qyn] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-oil6544qyn 0.8s linear infinite;
    display: inline-block;
}

/* Estados desabilitados */
.form-input:disabled[b-oil6544qyn],
.form-textarea:disabled[b-oil6544qyn],
.tab-btn:disabled[b-oil6544qyn],
.btn-add-tag:disabled[b-oil6544qyn],
.btn-clear-images:disabled[b-oil6544qyn],
.btn-remove-image:disabled[b-oil6544qyn] {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f1f5f9;
}

.btn-close:disabled[b-oil6544qyn] {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-modal:disabled[b-oil6544qyn] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.tag-item button:disabled[b-oil6544qyn] {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Progress Section no Footer */
.progress-section[b-oil6544qyn] {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
}

.progress-info[b-oil6544qyn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-text[b-oil6544qyn] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.progress-percent[b-oil6544qyn] {
    font-size: 0.875rem;
    font-weight: 700;
    color: #3f9c8a;
}

.progress-bar-container[b-oil6544qyn] {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill[b-oil6544qyn] {
    height: 100%;
    background: linear-gradient(90deg, #3f9c8a 0%, #2c4356 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(63, 156, 138, 0.3);
}

/* Modal Actions */
.modal-actions[b-oil6544qyn] {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    width: 100%;
}
/* /Components/Pages/ModalProdutoShopeeTab.razor.rz.scp.css */
.tab-content[b-7zd34whpms] {
    animation: fadeIn 0.3s ease;
}

.tab-content-fill[b-7zd34whpms] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.form-row[b-7zd34whpms] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group[b-7zd34whpms] {
    margin-bottom: 1rem;
}

.form-label[b-7zd34whpms] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-label i[b-7zd34whpms] {
    color: #3f9c8a;
}

.form-input[b-7zd34whpms] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus[b-7zd34whpms] {
    outline: none;
    border-color: #3f9c8a;
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
}

.form-input:read-only[b-7zd34whpms] {
    background: #f8fafc;
    color: #64748b;
}

.form-textarea[b-7zd34whpms] {
    width: 100%;
    padding: 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-textarea:focus[b-7zd34whpms] {
    outline: none;
    border-color: #3f9c8a;
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
}

.envios-section[b-7zd34whpms] {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.envios-header[b-7zd34whpms] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
}

.envios-description[b-7zd34whpms] {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

.envios-count[b-7zd34whpms] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(63, 156, 138, 0.12);
    color: #2c4356;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.shopee-logistics-list[b-7zd34whpms] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.65rem;
}

.shopee-logistics-group[b-7zd34whpms] {
    grid-column: 1 / -1;
}

.shopee-logistics-item[b-7zd34whpms] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid #dbe4ee;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.shopee-logistics-item.selected[b-7zd34whpms] {
    border-color: #3f9c8a;
    background: rgba(63, 156, 138, 0.06);
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.08);
}

.shopee-logistics-item-text[b-7zd34whpms] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.shopee-logistics-item-text strong[b-7zd34whpms] {
    font-size: 0.92rem;
    color: #1e293b;
    font-weight: 700;
}

.shopee-logistics-item-text span[b-7zd34whpms] {
    font-size: 0.78rem;
    color: #64748b;
}

.shopee-logistics-switch[b-7zd34whpms] {
    margin: 0;
    padding-left: 1rem;
    flex-shrink: 0;
}

.shopee-logistics-switch .form-check-input[b-7zd34whpms] {
    width: 2.5rem;
    height: 1.35rem;
    cursor: pointer;
}

.shopee-logistics-switch .form-check-input:checked[b-7zd34whpms] {
    background-color: #3f9c8a;
    border-color: #3f9c8a;
}

.envios-loading[b-7zd34whpms],
.envios-empty[b-7zd34whpms] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
}

.envios-empty i[b-7zd34whpms] {
    font-size: 1.35rem;
    color: #94a3b8;
}

.envios-empty p[b-7zd34whpms] {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

[b-7zd34whpms] .form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

[b-7zd34whpms] .form-input:focus {
    outline: none;
    border-color: #3f9c8a;
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
}

[b-7zd34whpms] .form-input:read-only {
    background: #f8fafc;
    color: #64748b;
}

[b-7zd34whpms] .form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

[b-7zd34whpms] .form-textarea:focus {
    outline: none;
    border-color: #3f9c8a;
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
}

.tab-content-fill .form-group[b-7zd34whpms] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.tab-content-fill .form-textarea[b-7zd34whpms] {
    flex: 1;
    min-height: 320px;
    resize: none;
}

.tab-content-fill .form-hint[b-7zd34whpms] {
    margin-top: 0.75rem;
}
/* /Components/Pages/Nuvemshop/NuvemshopLogin.razor.rz.scp.css */
body[b-cd5c0ohkk2] {
}

.shopee-login-page[b-cd5c0ohkk2] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at top, #f1f7ff 0%, #f7f7f8 60%);
}

.shopee-login-card[b-cd5c0ohkk2] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(61, 107, 204, 0.10), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #dde7fb;
}

.shopee-icon-wrapper[b-cd5c0ohkk2] {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7d9df5, #4978e8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(73, 120, 232, 0.30);
}

.shopee-title[b-cd5c0ohkk2] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 8px;
}

.shopee-subtitle[b-cd5c0ohkk2] {
    color: #7a7a7a;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 28px;
}

.shopee-btn[b-cd5c0ohkk2] {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #7d9df5, #4978e8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 6px 16px rgba(73, 120, 232, 0.30);
}

    .shopee-btn:hover[b-cd5c0ohkk2] {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(73, 120, 232, 0.38);
        opacity: 0.96;
    }

    .shopee-btn:active[b-cd5c0ohkk2] {
        transform: translateY(0);
    }

.shopee-btn-loading[b-cd5c0ohkk2] {
    opacity: 0.75;
    cursor: not-allowed;
}

.spinner[b-cd5c0ohkk2] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: shopee-spin-b-cd5c0ohkk2 0.7s linear infinite;
}

@keyframes shopee-spin-b-cd5c0ohkk2 {
    to {
        transform: rotate(360deg);
    }
}

.shopee-divider[b-cd5c0ohkk2] {
    height: 1px;
    background: #f0f0f0;
    margin: 24px 0 16px;
}

.shopee-hint[b-cd5c0ohkk2] {
    font-size: 0.8rem;
    color: #a3a3a3;
    line-height: 1.5;
}

.shopee-alert[b-cd5c0ohkk2] {
    margin-top: 20px;
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.88rem;
    text-align: left;
}
/* /Components/Pages/Pedidos.razor.rz.scp.css */
/* ============================================
   Pedidos - identidade visual do cliente (AlphaInd)
   Paleta: navy petr�leo (#1c2b38 / #2c4356) + verde-�gua (#3f9c8a)
   ============================================ */

/* Container Principal */
.pedidos-container[b-1qgls89y3m] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header */
.pedidos-header[b-1qgls89y3m] {
    background: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(10, 20, 30, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-left: 4px solid #3f9c8a;
}

.header-content[b-1qgls89y3m] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-1qgls89y3m] {
    width: 48px;
    height: 48px;
    background: rgba(63, 156, 138, 0.2);
    border: 1.5px solid rgba(63, 156, 138, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6fd6c2;
    backdrop-filter: blur(10px);
}

.header-title[b-1qgls89y3m] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.header-subtitle[b-1qgls89y3m] {
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

.header-stats[b-1qgls89y3m] {
    display: flex;
    gap: 1rem;
}

.stat-item[b-1qgls89y3m] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

    .stat-item i[b-1qgls89y3m] {
        font-size: 1rem;
    }

/* Card de Filtros */
.filter-card[b-1qgls89y3m] {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.filter-grid[b-1qgls89y3m] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.filter-item[b-1qgls89y3m] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.filter-label[b-1qgls89y3m] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .filter-label i[b-1qgls89y3m] {
        color: #3f9c8a;
        font-size: 0.9rem;
    }

.modern-input[b-1qgls89y3m] {
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    color: #1e293b;
    box-sizing: border-box;
}

    .modern-input:focus[b-1qgls89y3m] {
        outline: none;
        border-color: #3f9c8a;
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

/* Caso .modern-input esteja dentro de InputText/InputDate (CSS isolation) */
[b-1qgls89y3m] .modern-input {
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    color: #1e293b;
    box-sizing: border-box;
}

    [b-1qgls89y3m] .modern-input:focus {
        outline: none;
        border-color: #3f9c8a;
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

.filter-actions[b-1qgls89y3m] {
    display: flex;
    gap: 0.75rem;
}

.btn-modern[b-1qgls89y3m] {
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-modern:disabled[b-1qgls89y3m] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-primary[b-1qgls89y3m] {
    background: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

    .btn-primary:hover:not(:disabled)[b-1qgls89y3m] {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(63, 156, 138, 0.3);
    }

.btn-secondary[b-1qgls89y3m] {
    background: white;
    color: #1e293b;
    border: 1.5px solid #e2e8f0;
}

    .btn-secondary:hover:not(:disabled)[b-1qgls89y3m] {
        background: #f8fafc;
        border-color: #3f9c8a;
        color: #3f9c8a;
    }

/* Tabela */
.table-card[b-1qgls89y3m] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.table-header[b-1qgls89y3m] {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.table-title[b-1qgls89y3m] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

    .table-title i[b-1qgls89y3m] {
        font-size: 1.125rem;
        color: #3f9c8a;
    }

    .table-title h3[b-1qgls89y3m] {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: #1e293b;
    }

.btn-export[b-1qgls89y3m] {
    padding: 0.5rem 1rem;
    background: white;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-export:hover[b-1qgls89y3m] {
        border-color: #3f9c8a;
        color: #3f9c8a;
        background: rgba(63, 156, 138, 0.06);
    }

.btn-action-details[b-1qgls89y3m] {
    width: 34px;
    height: 34px;
    border: 1px solid #dbe4ee;
    background: #f8fafc;
    color: #2c4356;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-action-details:hover[b-1qgls89y3m] {
        background: #e6f4f1;
        border-color: #3f9c8a;
        color: #1c2b38;
        transform: translateY(-1px);
    }

.modern-table-wrapper[b-1qgls89y3m] {
    max-height: 550px;
    overflow-y: auto;
}

.modern-table[b-1qgls89y3m] {
    width: 100%;
    border-collapse: collapse;
}

    .modern-table thead[b-1qgls89y3m] {
        position: sticky;
        top: 0;
        z-index: 10;
        background: linear-gradient(to bottom, #ffffff, #f8fafc);
    }

    .modern-table th[b-1qgls89y3m] {
        padding: 0.75rem 1rem;
        text-align: left;
        font-weight: 600;
        font-size: 0.8rem;
        color: #1e293b;
        border-bottom: 2px solid #e2e8f0;
    }

.th-content[b-1qgls89y3m] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .th-content i[b-1qgls89y3m] {
        color: #3f9c8a;
        font-size: 0.9rem;
    }

.modern-table tbody tr[b-1qgls89y3m] {
    transition: all 0.2s ease;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
}

    .modern-table tbody tr:hover[b-1qgls89y3m] {
        background: rgba(63, 156, 138, 0.06);
    }

.modern-table td[b-1qgls89y3m] {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

/* Estilos dos Pedidos */
.pedido-id[b-1qgls89y3m] {
    font-weight: 700;
    color: #2c4356;
    font-family: monospace;
    font-size: 0.9rem;
}

.pedido-data[b-1qgls89y3m] {
    color: #64748b;
    font-size: 0.85rem;
}

.pedido-total[b-1qgls89y3m] {
    font-weight: 700;
    color: #10b981;
    font-size: 0.95rem;
}

.badge[b-1qgls89y3m] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-info[b-1qgls89y3m] {
    background: #e7f4f1;
    color: #256657;
}

/* Status Badge */
.status-badge[b-1qgls89y3m] {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: none;
    width: 170px;
    text-align: center;
}

.status-processing[b-1qgls89y3m] {
    background: #fef3c7;
    color: #92400e;
}

.status-completed[b-1qgls89y3m] {
    background: #d1fae5;
    color: #065f46;
}

.status-pending[b-1qgls89y3m] {
    background: #fecaca;
    color: #991b1b;
}

.status-cancelled[b-1qgls89y3m] {
    background: #f3f4f6;
    color: #6b7280;
}

.status-on-hold[b-1qgls89y3m] {
    background: #e0e7ff;
    color: #3730a3;
}

.status-default[b-1qgls89y3m] {
    background: #f1f5f9;
    color: #475569;
}

.status-awaiting-payment[b-1qgls89y3m],
.status-pending[b-1qgls89y3m] {
    background: #fef3c7;
    color: #92400e;
}

.status-approved[b-1qgls89y3m],
.status-completed[b-1qgls89y3m],
.status-delivered[b-1qgls89y3m] {
    background: #d1fae5;
    color: #065f46;
}

.status-denied[b-1qgls89y3m],
.status-cancelled[b-1qgls89y3m],
.status-error[b-1qgls89y3m],
.status-payment-refunded[b-1qgls89y3m] {
    background: #fee2e2;
    color: #991b1b;
}

.status-processing[b-1qgls89y3m],
.status-invoiced[b-1qgls89y3m],
.status-ready-to-ship[b-1qgls89y3m],
.status-shipped[b-1qgls89y3m],
.status-in-transit[b-1qgls89y3m] {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-returned[b-1qgls89y3m],
.status-refunded[b-1qgls89y3m] {
    background: #ede9fe;
    color: #6d28d9;
}

.status-on-hold[b-1qgls89y3m] {
    background: #e0e7ff;
    color: #3730a3;
}

.billing-status-badge[b-1qgls89y3m] {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: none;
}

.billing-status-pending[b-1qgls89y3m] {
    background: #fef3c7;
    color: #92400e;
}

.billing-status-completed[b-1qgls89y3m] {
    background: #d1fae5;
    color: #065f46;
}

.billing-status-failed[b-1qgls89y3m] {
    background: #fee2e2;
    color: #991b1b;
}

.billing-status-default[b-1qgls89y3m] {
    background: #f1f5f9;
    color: #475569;
}

/* Row Classes */
.row-processing[b-1qgls89y3m] {
    border-left: 3px solid #f59e0b;
}

.row-completed[b-1qgls89y3m] {
    border-left: 3px solid #10b981;
}

.row-pending[b-1qgls89y3m] {
    border-left: 3px solid #ef4444;
}

.row-cancelled[b-1qgls89y3m] {
    border-left: 3px solid #9ca3af;
    opacity: 0.7;
}

.row-billing-pending[b-1qgls89y3m] {
    border-left: 3px solid #f59e0b;
}

.row-billing-completed[b-1qgls89y3m] {
    border-left: 3px solid #10b981;
}

.row-billing-failed[b-1qgls89y3m] {
    border-left: 3px solid #ef4444;
}

.row-billing-default[b-1qgls89y3m] {
    border-left: 3px solid #cbd5e1;
}

.cliente-info[b-1qgls89y3m] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
}

    .cliente-info i[b-1qgls89y3m] {
        font-size: 1.125rem;
        color: #94a3b8;
    }

/* Empty State */
.empty-state[b-1qgls89y3m] {
    padding: 3rem 2rem !important;
}

.empty-content[b-1qgls89y3m] {
    text-align: center;
    color: #64748b;
}

    .empty-content i[b-1qgls89y3m] {
        font-size: 3rem;
        opacity: 0.3;
        display: block;
        margin-bottom: 0.75rem;
    }

    .empty-content h4[b-1qgls89y3m] {
        margin: 0.375rem 0;
        color: #1e293b;
        font-size: 1rem;
    }

    .empty-content p[b-1qgls89y3m] {
        margin: 0;
        font-size: 0.875rem;
    }

/* Footer */
.table-footer[b-1qgls89y3m] {
    padding: 0.875rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info span[b-1qgls89y3m] {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Spinner */
.spinner[b-1qgls89y3m] {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin-b-1qgls89y3m 0.75s linear infinite;
}

@keyframes spin-b-1qgls89y3m {
    to {
        transform: rotate(360deg);
    }
}

/* Scrollbar */
.modern-table-wrapper[b-1qgls89y3m]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.modern-table-wrapper[b-1qgls89y3m]::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 3px;
}

.modern-table-wrapper[b-1qgls89y3m]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

    .modern-table-wrapper[b-1qgls89y3m]::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* Anima��es */
.pedidos-header[b-1qgls89y3m] {
    animation: slideDown-b-1qgls89y3m 0.4s ease-out;
}

.filter-card[b-1qgls89y3m],
.table-card[b-1qgls89y3m] {
    animation: fadeInUp-b-1qgls89y3m 0.4s ease-out;
}

@keyframes slideDown-b-1qgls89y3m {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-1qgls89y3m {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .pedidos-header[b-1qgls89y3m] {
        flex-direction: column;
        gap: 1rem;
    }

    .header-stats[b-1qgls89y3m] {
        width: 100%;
        justify-content: space-around;
    }

    .filter-grid[b-1qgls89y3m] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pedidos-container[b-1qgls89y3m] {
        padding: 0.75rem;
    }

    .header-title[b-1qgls89y3m] {
        font-size: 1.25rem;
    }

    .modern-table th[b-1qgls89y3m],
    .modern-table td[b-1qgls89y3m] {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .filter-actions[b-1qgls89y3m] {
        flex-direction: column;
    }

    .btn-modern[b-1qgls89y3m] {
        width: 100%;
        justify-content: center;
    }
}

/* Spinner nos Bot�es */
.spinner-btn[b-1qgls89y3m] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-1qgls89y3m 0.8s linear infinite;
    display: inline-block;
}

/* Skeleton Loading */
.skeleton-container[b-1qgls89y3m] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-row[b-1qgls89y3m] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    animation: skeleton-pulse-b-1qgls89y3m 1.5s ease-in-out infinite;
}

.skeleton-checkbox[b-1qgls89y3m] {
    width: 20px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 4px;
    flex-shrink: 0;
}

.skeleton-text[b-1qgls89y3m] {
    height: 20px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-ref[b-1qgls89y3m] {
    width: 100px;
    flex-shrink: 0;
}

.skeleton-desc[b-1qgls89y3m] {
    flex: 1;
}

.skeleton-price[b-1qgls89y3m] {
    width: 120px;
    flex-shrink: 0;
}

.skeleton-icon[b-1qgls89y3m] {
    width: 24px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes skeleton-pulse-b-1qgls89y3m {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Estados desabilitados */
.modern-input:disabled[b-1qgls89y3m],
.modern-select:disabled[b-1qgls89y3m] {
    background: #f1f5f9;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-modern:disabled[b-1qgls89y3m],
.btn-action:disabled[b-1qgls89y3m] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}
/* /Components/Pages/Produtos.razor.rz.scp.css */
.produtos-container[b-z3o0x14qc7] {
    --gradient-header: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    --gradient-primary: linear-gradient(135deg, #3f9c8a 0%, #2c4356 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-card: linear-gradient(to bottom, #ffffff, #f8fafc);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(10, 20, 30, 0.25);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --color-primary: #3f9c8a;
    --color-primary-dark: #2c4356;
    --color-success: #10b981;
    --color-success-dark: #059669;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-border: #e2e8f0;
    --color-bg: #f8fafc;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
}

/* Header Moderno - MAIS COMPACTO */
.produtos-header[b-z3o0x14qc7] {
    background: var(--gradient-header);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-left: 4px solid #3f9c8a;
}

.header-content[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-z3o0x14qc7] {
    width: 48px;
    height: 48px;
    background: rgba(63, 156, 138, 0.2);
    border: 1.5px solid rgba(63, 156, 138, 0.5);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6fd6c2;
    backdrop-filter: blur(10px);
}

.header-title[b-z3o0x14qc7] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.header-subtitle[b-z3o0x14qc7] {
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

.header-stats[b-z3o0x14qc7] {
    display: flex;
    gap: 1rem;
}

.stat-item[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

    .stat-item i[b-z3o0x14qc7] {
        font-size: 1rem;
    }

/* Card de Filtros - COMPACTO */
.filter-card[b-z3o0x14qc7] {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.filter-grid[b-z3o0x14qc7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.filter-item[b-z3o0x14qc7] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.filter-label[b-z3o0x14qc7] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .filter-label i[b-z3o0x14qc7] {
        color: var(--color-primary);
        font-size: 0.9rem;
    }

.modern-input[b-z3o0x14qc7],
.modern-select[b-z3o0x14qc7] {
    padding: 0.5rem 0.75rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--color-text);
    box-sizing: border-box;
}

    .modern-input:focus[b-z3o0x14qc7],
    .modern-select:focus[b-z3o0x14qc7] {
        outline: none;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

    .modern-input[b-z3o0x14qc7]::placeholder {
        color: var(--color-text-light);
    }

/* Caso .modern-input/.modern-select estejam dentro de InputText/InputSelect (CSS isolation) */
[b-z3o0x14qc7] .modern-input,
[b-z3o0x14qc7] .modern-select {
    padding: 0.5rem 0.75rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--color-text);
    box-sizing: border-box;
}

    [b-z3o0x14qc7] .modern-input:focus,
    [b-z3o0x14qc7] .modern-select:focus {
        outline: none;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
    }

.filter-actions[b-z3o0x14qc7] {
    display: flex;
    gap: 0.75rem;
}

/* Botões Modernos - MAIS FINOS */
.btn-modern[b-z3o0x14qc7] {
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

    .btn-modern:disabled[b-z3o0x14qc7] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-primary[b-z3o0x14qc7] {
    background: var(--gradient-primary);
    color: white;
}

    .btn-primary:hover:not(:disabled)[b-z3o0x14qc7] {
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

.btn-secondary[b-z3o0x14qc7] {
    background: white;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

    .btn-secondary:hover:not(:disabled)[b-z3o0x14qc7] {
        background: var(--color-bg);
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

/* Paginação */
.table-footer[b-z3o0x14qc7] {
    padding: 0.9rem 1.25rem;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 1));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-info[b-z3o0x14qc7] {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.pagination-actions[b-z3o0x14qc7] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-controls[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pagination-size-actions[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-size-label[b-z3o0x14qc7] {
    margin-right: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.pagination-status[b-z3o0x14qc7] {
    min-width: 140px;
    text-align: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: white;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.pagination-actions .btn-modern[b-z3o0x14qc7] {
    padding: 0.55rem 0.85rem;
    min-width: 2.4rem;
    justify-content: center;
    border-radius: 999px;
}

.pagination-size-actions .btn-modern[b-z3o0x14qc7] {
    padding: 0.5rem 0.8rem;
    min-width: 3rem;
    justify-content: center;
    border-radius: 999px;
}

.pagination-size-actions .btn-modern.is-active[b-z3o0x14qc7] {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.pagination-actions .btn-modern i[b-z3o0x14qc7] {
    font-size: 0.9rem;
}

.pagination-actions .btn-modern:disabled[b-z3o0x14qc7] {
    opacity: 0.45;
    box-shadow: none;
}

/* Card da Tabela - COMPACTO */
.table-card[b-z3o0x14qc7] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    min-height: 0;
}

.table-header[b-z3o0x14qc7] {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-card);
}

.table-title[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

    .table-title i[b-z3o0x14qc7] {
        font-size: 1.125rem;
        color: var(--color-primary);
    }

    .table-title h3[b-z3o0x14qc7] {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text);
    }

/* Checkbox Customizado - MENOR */
.checkbox-wrapper[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

    .checkbox-wrapper input[b-z3o0x14qc7] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkmark[b-z3o0x14qc7] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 5px;
    background: white;
    transition: all 0.3s ease;
}

.checkbox-wrapper input:checked ~ .checkmark[b-z3o0x14qc7] {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

    .checkbox-wrapper input:checked ~ .checkmark[b-z3o0x14qc7]::after {
        content: '✓';
        display: block;
        color: white;
        font-size: 12px;
        text-align: center;
        line-height: 14px;
    }

.label-text[b-z3o0x14qc7] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Tabela Moderna - LINHAS MAIS FINAS */
.modern-table-wrapper[b-z3o0x14qc7] {
    max-height: 550px;
    overflow-y: auto;
}

.modern-table[b-z3o0x14qc7] {
    width: 100%;
    border-collapse: collapse;
}

    .modern-table thead[b-z3o0x14qc7] {
        position: sticky;
        top: 0;
        z-index: 10;
        background: var(--gradient-card);
    }

    .modern-table th[b-z3o0x14qc7] {
        padding: 0.75rem 1rem;
        text-align: left;
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--color-text);
        border-bottom: 2px solid var(--color-border);
    }

.th-content[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .th-content i[b-z3o0x14qc7] {
        color: var(--color-primary);
        font-size: 0.9rem;
    }

.modern-table tbody tr[b-z3o0x14qc7] {
    transition: all 0.2s ease;
    cursor: pointer;
    border-bottom: 1px solid var(--color-border);
}

    .modern-table tbody tr:hover[b-z3o0x14qc7] {
        background: rgba(63, 156, 138, 0.06);
    }

    .modern-table tbody tr.selected[b-z3o0x14qc7] {
        background: rgba(63, 156, 138, 0.12);
    }

.modern-table td[b-z3o0x14qc7] {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.checkbox-wrapper-small[b-z3o0x14qc7] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

    .checkbox-wrapper-small input[b-z3o0x14qc7] {
        position: absolute;
        inset: 0; /* top/right/bottom/left: 0 — cobre exatamente o wrapper */
        width: 100%;
        height: 100%;
        margin: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 2; /* garante que fica clicável por cima do span */
    }

.checkmark-small[b-z3o0x14qc7] {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background: white;
    display: inline-block;
    transition: all 0.2s ease;
    pointer-events: none; /* clique passa direto pro input por baixo */
}

.checkbox-wrapper-small input:checked ~ .checkmark-small[b-z3o0x14qc7] {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

    .checkbox-wrapper-small input:checked ~ .checkmark-small[b-z3o0x14qc7]::after {
        content: '✓';
        display: block;
        color: white;
        font-size: 11px;
        text-align: center;
        line-height: 12px;
    }

.product-ref[b-z3o0x14qc7] {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-family: monospace;
    font-size: 0.875rem;
}

.product-name[b-z3o0x14qc7] {
    color: var(--color-text);
}

.product-price[b-z3o0x14qc7] {
    font-weight: 700;
    color: var(--color-success);
    font-size: 0.95rem;
}

/* Estado Vazio - MAIS COMPACTO */
.empty-state[b-z3o0x14qc7] {
    padding: 3rem 2rem !important;
}

.empty-content[b-z3o0x14qc7] {
    text-align: center;
    color: var(--color-text-light);
}

    .empty-content i[b-z3o0x14qc7] {
        font-size: 3rem;
        opacity: 0.3;
        display: block;
        margin-bottom: 0.75rem;
    }

    .empty-content h4[b-z3o0x14qc7] {
        margin: 0.375rem 0;
        color: var(--color-text);
        font-size: 1rem;
    }

    .empty-content p[b-z3o0x14qc7] {
        margin: 0;
        font-size: 0.875rem;
    }

/* Botão de Ação - SLIM */
.btn-action[b-z3o0x14qc7] {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-success[b-z3o0x14qc7] {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-sm);
}

    .btn-success:hover:not(:disabled)[b-z3o0x14qc7] {
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

    .btn-success:disabled[b-z3o0x14qc7] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Progresso Moderno - MAIS FINO */
.progress-card[b-z3o0x14qc7] {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.progress-header[b-z3o0x14qc7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

    .progress-header h4[b-z3o0x14qc7] {
        margin: 0;
        color: var(--color-text);
        font-size: 0.9rem;
    }

    .progress-header p[b-z3o0x14qc7] {
        margin: 0.25rem 0 0 0;
        color: var(--color-text-light);
        font-size: 0.8rem;
    }

.progress-percent[b-z3o0x14qc7] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.modern-progress[b-z3o0x14qc7] {
    height: 10px;
    background: var(--color-bg);
    border-radius: 100px;
    overflow: hidden;
}

.modern-progress-bar[b-z3o0x14qc7] {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 100px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .modern-progress-bar[b-z3o0x14qc7]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: shimmer-b-z3o0x14qc7 2s infinite;
    }

@keyframes shimmer-b-z3o0x14qc7 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Spinner - MENOR */
.spinner[b-z3o0x14qc7] {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin-b-z3o0x14qc7 0.75s linear infinite;
}

@keyframes spin-b-z3o0x14qc7 {
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .produtos-header[b-z3o0x14qc7] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .header-stats[b-z3o0x14qc7] {
        width: 100%;
        justify-content: space-around;
    }

    .filter-grid[b-z3o0x14qc7] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .produtos-container[b-z3o0x14qc7] {
        padding: 0.75rem;
    }

    .header-title[b-z3o0x14qc7] {
        font-size: 1.25rem;
    }

    .header-icon[b-z3o0x14qc7] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .modern-table th[b-z3o0x14qc7],
    .modern-table td[b-z3o0x14qc7] {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .filter-actions[b-z3o0x14qc7] {
        flex-direction: column;
    }

    .table-footer[b-z3o0x14qc7] {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination-controls[b-z3o0x14qc7] {
        justify-content: stretch;
    }

    .pagination-actions[b-z3o0x14qc7],
    .pagination-size-actions[b-z3o0x14qc7] {
        justify-content: center;
    }

    .pagination-status[b-z3o0x14qc7] {
        width: 100%;
    }

    .btn-modern[b-z3o0x14qc7],
    .btn-action[b-z3o0x14qc7] {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .produtos-container[b-z3o0x14qc7] {
        --color-text: #1e293b;
        --color-text-light: #64748b;
        --color-border: #e2e8f0;
        --color-bg: #f8fafc;
        --gradient-card: linear-gradient(to bottom, #ffffff, #f8fafc);
    }

    .filter-card[b-z3o0x14qc7],
    .table-card[b-z3o0x14qc7],
    .progress-card[b-z3o0x14qc7] {
        background: #ffffff;
    }

    .modern-input[b-z3o0x14qc7],
    .modern-select[b-z3o0x14qc7] {
        background: #ffffff;
        color: #1e293b;
    }

    .modern-table tbody tr:hover[b-z3o0x14qc7] {
        background: rgba(63, 156, 138, 0.12);
    }

    .table-footer[b-z3o0x14qc7] {
        background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 1));
    }

    .modern-table thead[b-z3o0x14qc7],
    .table-header[b-z3o0x14qc7] {
        background: var(--gradient-card);
    }
}

/* Animações de Entrada */
.produtos-header[b-z3o0x14qc7] {
    animation: slideDown-b-z3o0x14qc7 0.4s ease-out;
}

.filter-card[b-z3o0x14qc7],
.table-card[b-z3o0x14qc7] {
    animation: fadeInUp-b-z3o0x14qc7 0.4s ease-out;
}

@keyframes slideDown-b-z3o0x14qc7 {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-z3o0x14qc7 {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll customizado - MAIS FINO */
.modern-table-wrapper[b-z3o0x14qc7]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.modern-table-wrapper[b-z3o0x14qc7]::-webkit-scrollbar-track {
    background: var(--color-bg);
    border-radius: 3px;
}

.modern-table-wrapper[b-z3o0x14qc7]::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

    .modern-table-wrapper[b-z3o0x14qc7]::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary);
    }

/* Spinner nos Botões */
.spinner-btn[b-z3o0x14qc7] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-z3o0x14qc7 0.8s linear infinite;
    display: inline-block;
}

/* Skeleton Loading */
.skeleton-container[b-z3o0x14qc7] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-row[b-z3o0x14qc7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    animation: skeleton-pulse-b-z3o0x14qc7 1.5s ease-in-out infinite;
}

.skeleton-checkbox[b-z3o0x14qc7] {
    width: 20px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 4px;
    flex-shrink: 0;
}

.skeleton-text[b-z3o0x14qc7] {
    height: 20px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-ref[b-z3o0x14qc7] {
    width: 100px;
    flex-shrink: 0;
}

.skeleton-desc[b-z3o0x14qc7] {
    flex: 1;
}

.skeleton-price[b-z3o0x14qc7] {
    width: 120px;
    flex-shrink: 0;
}

.skeleton-icon[b-z3o0x14qc7] {
    width: 24px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes skeleton-pulse-b-z3o0x14qc7 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Estados desabilitados */
.modern-input:disabled[b-z3o0x14qc7],
.modern-select:disabled[b-z3o0x14qc7] {
    background: #f1f5f9;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-modern:disabled[b-z3o0x14qc7],
.btn-action:disabled[b-z3o0x14qc7] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}
/* /Components/Pages/Shopee/ShopeeLogin.razor.rz.scp.css */
body[b-bdsn2vmdj3] {
}
.shopee-login-page[b-bdsn2vmdj3] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at top, #fff5f2 0%, #f7f7f8 60%);
}

.shopee-login-card[b-bdsn2vmdj3] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(238, 77, 45, 0.10), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #fbe4dd;
}

.shopee-icon-wrapper[b-bdsn2vmdj3] {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7337, #ee4d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(238, 77, 45, 0.35);
}

.shopee-title[b-bdsn2vmdj3] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 8px;
}

.shopee-subtitle[b-bdsn2vmdj3] {
    color: #7a7a7a;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 28px;
}

.shopee-btn[b-bdsn2vmdj3] {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7337, #ee4d2d);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 6px 16px rgba(238, 77, 45, 0.30);
}

    .shopee-btn:hover[b-bdsn2vmdj3] {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(238, 77, 45, 0.38);
        opacity: 0.96;
    }

    .shopee-btn:active[b-bdsn2vmdj3] {
        transform: translateY(0);
    }

.shopee-btn-loading[b-bdsn2vmdj3] {
    opacity: 0.75;
    cursor: not-allowed;
}

.spinner[b-bdsn2vmdj3] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: shopee-spin 0.7s linear infinite;
}

@@keyframes shopee-spin {
    to[b-bdsn2vmdj3] {
        transform: rotate(360deg);
    }
}

.shopee-divider[b-bdsn2vmdj3] {
    height: 1px;
    background: #f0f0f0;
    margin: 24px 0 16px;
}

.shopee-hint[b-bdsn2vmdj3] {
    font-size: 0.8rem;
    color: #a3a3a3;
    line-height: 1.5;
}

.shopee-alert[b-bdsn2vmdj3] {
    margin-top: 20px;
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.88rem;
    text-align: left;
}
/* /Components/Pages/Webhooks.razor.rz.scp.css */
.webhooks-container[b-odc8ythutq] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ============ HEADER (cores da empresa) ============ */

.webhooks-header[b-odc8ythutq] {
    background: linear-gradient(135deg, #1c2b38 0%, #2c4356 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(10, 20, 30, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-left: 4px solid #3f9c8a;
    gap: 1rem;
}

.header-content[b-odc8ythutq] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-odc8ythutq] {
    width: 48px;
    height: 48px;
    background: rgba(63, 156, 138, 0.2);
    border: 1.5px solid rgba(63, 156, 138, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6fd6c2;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.header-title[b-odc8ythutq] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.header-subtitle[b-odc8ythutq] {
    font-size: 0.85rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

.btn-modern[b-odc8ythutq] {
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .btn-modern:focus-visible[b-odc8ythutq] {
        outline: 2px solid #6fd6c2;
        outline-offset: 2px;
    }

.btn-primary[b-odc8ythutq] {
    background: #3f9c8a;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

    .btn-primary:hover[b-odc8ythutq] {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(63, 156, 138, 0.35);
        color: white;
    }

.webhooks-alert[b-odc8ythutq] {
    border-radius: 12px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: alert-in-b-odc8ythutq 0.25s ease;
}

@keyframes alert-in-b-odc8ythutq {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.webhooks-alert.success[b-odc8ythutq] {
    background: #d7f0ea;
    color: #1f6f5c;
}

.webhooks-alert.error[b-odc8ythutq] {
    background: #fde8e8;
    color: #9b1c1c;
}

/* ============ SUMMARY ============ */

.webhooks-summary[b-odc8ythutq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.summary-item[b-odc8ythutq] {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-label[b-odc8ythutq] {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.summary-item strong[b-odc8ythutq] {
    font-size: 1rem;
    color: #1e293b;
}

/* ============ LOADING ============ */

.loading-container[b-odc8ythutq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.skeleton-card[b-odc8ythutq] {
    height: 280px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-odc8ythutq 1.5s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes loading-b-odc8ythutq {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============ GRID / CARDS ============ */

.webhooks-grid[b-odc8ythutq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.webhook-card[b-odc8ythutq] {
    /* --brand-color / --brand-color-soft are set per card, inline, per ecommerce */
    --brand-color: #3f9c8a;
    --brand-color-soft: rgba(63, 156, 138, 0.12);
    position: relative;
    background: white;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: 1rem;
    padding-top: 1.15rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

    /* Faixa superior com a cor da marca do ecommerce - só dentro do card */
    .webhook-card[b-odc8ythutq]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brand-color);
        opacity: 0.9;
    }

    .webhook-card:hover[b-odc8ythutq] {
        box-shadow: 0 10px 25px rgba(28, 43, 56, 0.12);
        transform: translateY(-2px);
        border-color: var(--brand-color);
    }

    .webhook-card.disabled[b-odc8ythutq] {
        opacity: 0.62;
        background: #f8fafc;
        filter: grayscale(0.15);
    }

        .webhook-card.disabled:hover[b-odc8ythutq] {
            transform: none;
            border-color: #e2e8f0;
        }

.webhook-card-header[b-odc8ythutq] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

/* Medalhão com a logo do ecommerce em SVG, usando a cor da marca */
.webhook-icon[b-odc8ythutq] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--brand-color-soft);
    border: 1.5px solid var(--brand-color);
    padding: 8px;
    box-sizing: border-box;
}

    .webhook-icon svg[b-odc8ythutq] {
        width: 100%;
        height: 100%;
        display: block;
    }

.webhook-title-group[b-odc8ythutq] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

    .webhook-title-group h3[b-odc8ythutq] {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e293b;
    }

.badge-status[b-odc8ythutq] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

    .badge-status i[b-odc8ythutq] {
        font-size: 0.5rem;
    }

.status-active[b-odc8ythutq] {
    background: #d7f0ea;
    color: #1f6f5c;
}

.status-inactive[b-odc8ythutq] {
    background: #f3f4f6;
    color: #6b7280;
}

.webhook-description[b-odc8ythutq] {
    margin: 0;
    color: #475569;
    line-height: 1.55;
    min-height: 4.6rem;
}

.webhook-meta[b-odc8ythutq] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.meta-item[b-odc8ythutq] {
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e2e8f0;
}

.meta-label[b-odc8ythutq] {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.meta-item strong[b-odc8ythutq] {
    color: #1e293b;
    font-size: 0.88rem;
    word-break: break-word;
}

/* Botão de ação: mantém a cor institucional (teal) em todos os cards */
.btn-action[b-odc8ythutq] {
    background: #3f9c8a;
    color: white;
    width: 100%;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

    .btn-action:hover:not(:disabled)[b-odc8ythutq] {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(63, 156, 138, 0.35);
        color: white;
    }

    .btn-action:focus-visible[b-odc8ythutq] {
        outline: 2px solid #1c2b38;
        outline-offset: 2px;
    }

    .btn-action:disabled[b-odc8ythutq] {
        cursor: not-allowed;
        opacity: 0.75;
        transform: none;
        box-shadow: none;
    }

@media (prefers-reduced-motion: reduce) {
    .webhook-card[b-odc8ythutq],
    .btn-modern[b-odc8ythutq],
    .btn-action[b-odc8ythutq],
    .skeleton-card[b-odc8ythutq],
    .webhooks-alert[b-odc8ythutq] {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .webhooks-header[b-odc8ythutq] {
        flex-direction: column;
        align-items: flex-start;
    }

    .webhooks-grid[b-odc8ythutq],
    .loading-container[b-odc8ythutq] {
        grid-template-columns: 1fr;
    }
}
/* /Components/SearchableSelect.razor.rz.scp.css */
.searchable-select[b-fquf9cdmc8] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
    isolation: isolate;
    z-index: 1;
}

.searchable-select:focus-within[b-fquf9cdmc8] {
    z-index: 1000001;
}

.searchable-select-label[b-fquf9cdmc8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.searchable-select-wrapper[b-fquf9cdmc8] {
    position: relative;
}

.searchable-select-input[b-fquf9cdmc8] {
    width: 100%;
    min-height: 40px;
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: all 0.2s ease;
    background: white;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.searchable-select-input:focus[b-fquf9cdmc8] {
    outline: none;
    border-color: #3f9c8a;
    box-shadow: 0 0 0 3px rgba(63, 156, 138, 0.12);
}

.searchable-select-input:disabled[b-fquf9cdmc8] {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
}

.searchable-select-chevron[b-fquf9cdmc8] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
    font-size: 0.875rem;
}

.searchable-select-options[b-fquf9cdmc8] {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    z-index: 1000000;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    max-height: 16rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.searchable-select-option[b-fquf9cdmc8] {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.75rem 0.9rem;
    font-size: 0.825rem;
    color: #334155;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.searchable-select-option:hover[b-fquf9cdmc8],
.searchable-select-option:focus-visible[b-fquf9cdmc8],
.searchable-select-option.selected[b-fquf9cdmc8] {
    background: #e6f4f1;
    color: #0f766e;
    outline: none;
}

.searchable-select-option:disabled[b-fquf9cdmc8] {
    opacity: 0.55;
    cursor: not-allowed;
}

.searchable-select-empty[b-fquf9cdmc8] {
    padding: 0.75rem 0.9rem;
    font-size: 0.825rem;
    color: #64748b;
}
