 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow: hidden;
        }

        .painel-white-label-layout-4 {
            height: 100vh;
            display: flex;
            background: var(--pwll4-bg-gray);
        }

        /* SIDEBAR */
        .painel-white-label-layout-4__sidebar {
            width: var(--pwll4-sidebar-width);
            background: var(--pwll4-primary-bg);
            color: var(--pwll4-text-white);
            display: flex;
            flex-direction: column;
            transition: var(--pwll4-transition);
            position: relative;
            flex-shrink: 0;
        }

        .painel-white-label-layout-4__sidebar--collapsed {
            width: var(--pwll4-sidebar-collapsed);
        }

        /* HEADER */
        .painel-white-label-layout-4__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            min-height: 64px;
        }

        .painel-white-label-layout-4__logo {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__logo-icon {
            width: 32px;
            height: 32px;
            background: var(--pwll4-accent-blue);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .painel-white-label-layout-4__logo-text {
            font-size: 20px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 1;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__logo-text {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .painel-white-label-layout-4__toggle {
            background: none;
            border: none;
            color: var(--pwll4-text-white);
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__toggle:hover {
            background: var(--pwll4-hover-bg);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__toggle {
            color: #1e293b;
            background: white;
            position: fixed;
            left: 16px;
            top: 16px;
            z-index: 1001;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .painel-white-label-layout-4__mobile-toggle {
            display: none;
        }

        /* SEARCH */
        .painel-white-label-layout-4__search {
            padding: 16px;
            position: relative;
        }

        .painel-white-label-layout-4__search-wrapper {
            position: relative;
        }

        .painel-white-label-layout-4__search-input {
            width: 100%;
            background: var(--pwll4-primary-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 10px 12px 10px 36px;
            color: var(--pwll4-text-white);
            font-size: 14px;
            outline: none;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__search-input::placeholder {
            color: var(--pwll4-text-gray);
        }

        .painel-white-label-layout-4__search-input:focus {
            border-color: var(--pwll4-accent-blue);
        }

        .painel-white-label-layout-4__search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--pwll4-text-gray);
            width: 16px;
            height: 16px;
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__search {
            display: none;
        }

        /* SEARCH RESULTS */
        .painel-white-label-layout-4__search-results {
            display: none;
            position: absolute;
            top: 100%;
            left: 16px;
            right: 16px;
            background: var(--pwll4-primary-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            margin-top: 4px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .painel-white-label-layout-4__search-results--visible {
            display: block;
        }

        .painel-white-label-layout-4__search-results::-webkit-scrollbar {
            width: 6px;
        }

        .painel-white-label-layout-4__search-results::-webkit-scrollbar-track {
            background: transparent;
        }

        .painel-white-label-layout-4__search-results::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        .painel-white-label-layout-4__search-result-item {
            padding: 10px 12px;
            color: var(--pwll4-text-white);
            font-size: 14px;
            cursor: pointer;
            transition: var(--pwll4-transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .painel-white-label-layout-4__search-result-item:last-child {
            border-bottom: none;
        }

        .painel-white-label-layout-4__search-result-item:hover {
            background: var(--pwll4-hover-bg);
        }

        .painel-white-label-layout-4__search-result-highlight {
            background: var(--pwll4-accent-blue);
            color: var(--pwll4-text-white);
            padding: 0 2px;
            border-radius: 2px;
        }

        .painel-white-label-layout-4__search-no-results {
            padding: 12px;
            text-align: center;
            color: var(--pwll4-text-gray);
            font-size: 13px;
        }

        /* MENU SECTION */
        .painel-white-label-layout-4__menu-section {
            padding: 0 16px;
            margin-bottom: 8px;
        }

        .painel-white-label-layout-4__section-title {
            font-size: 11px;
            font-weight: 600;
            color: var(--pwll4-text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 0 8px;
            white-space: nowrap;
            opacity: 1;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__section-title {
            opacity: 0;
            height: 0;
            padding: 0;
            overflow: hidden;
        }

        /* MENU SCROLL */
        .painel-white-label-layout-4__menu-scroll {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .painel-white-label-layout-4__menu-scroll::-webkit-scrollbar {
            width: 6px;
        }

        .painel-white-label-layout-4__menu-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .painel-white-label-layout-4__menu-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        .painel-white-label-layout-4__menu-scroll::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* MENU ITEMS */
        .painel-white-label-layout-4__menu-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            margin-bottom: 4px;
            border-radius: 8px;
            color: var(--pwll4-text-white);
            text-decoration: none;
            cursor: pointer;
            transition: var(--pwll4-transition);
            position: relative;
            white-space: nowrap;
        }

        .painel-white-label-layout-4__menu-item:hover {
            background: var(--pwll4-hover-bg);
        }

        .painel-white-label-layout-4__menu-item--active {
            background: var(--pwll4-accent-blue);
        }

        .painel-white-label-layout-4__menu-item--highlight {
            background: var(--pwll4-highlight-green);
            color: var(--pwll4-highlight-text);
        }

        .painel-white-label-layout-4__menu-item--highlight:hover {
            background: var(--pwll4-highlight-green);
            opacity: 0.9;
        }

        .painel-white-label-layout-4__menu-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .painel-white-label-layout-4__menu-text {
            flex: 1;
            font-size: 14px;
            opacity: 1;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__menu-text {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .painel-white-label-layout-4__menu-badge {
            background: var(--pwll4-badge-bg);
            color: var(--pwll4-text-white);
            font-size: 11px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 20px;
            text-align: center;
            opacity: 1;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__menu-badge {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .painel-white-label-layout-4__menu-arrow {
            width: 16px;
            height: 16px;
            opacity: 1;
            transition: var(--pwll4-transition);
            flex-shrink: 0;
        }

        .painel-white-label-layout-4__menu-arrow--rotate {
            transform: rotate(90deg);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__menu-arrow {
            opacity: 0;
            width: 0;
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__menu-item {
            justify-content: center;
            padding: 10px;
        }

        /* SUBMENU */
        .painel-white-label-layout-4__submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            margin-left: 32px;
            margin-top: 4px;
            margin-bottom: 4px;
        }

        .painel-white-label-layout-4__submenu--open {
            max-height: 500px;
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__submenu {
            display: none;
        }

        .painel-white-label-layout-4__submenu-item {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            margin-bottom: 2px;
            border-radius: 6px;
            color: var(--pwll4-text-white);
            text-decoration: none;
            cursor: pointer;
            font-size: 13px;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__submenu-item:hover {
            background: var(--pwll4-hover-bg);
        }

        .painel-white-label-layout-4__submenu-item--active {
            background: var(--pwll4-hover-bg);
        }

        /* PROFILE SECTION */
        .painel-white-label-layout-4__profile {
            padding: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: auto;
        }

        .painel-white-label-layout-4__download-btn {
            width: 100%;
            background: var(--pwll4-accent-blue);
            border: none;
            border-radius: 8px;
            padding: 12px 16px;
            color: var(--pwll4-text-white);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            margin-bottom: 16px;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__download-btn:hover {
            background: #0284c7;
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__download-btn {
            padding: 12px;
        }

        .painel-white-label-layout-4__download-text {
            opacity: 1;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__download-text {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .painel-white-label-layout-4__user {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__user:hover {
            background: var(--pwll4-hover-bg);
        }

        .painel-white-label-layout-4__user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #64748b;
            flex-shrink: 0;
        }

        .painel-white-label-layout-4__user-info {
            flex: 1;
            opacity: 1;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__user-info {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .painel-white-label-layout-4__user-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--pwll4-text-white);
            margin-bottom: 2px;
        }

        .painel-white-label-layout-4__user-role {
            font-size: 12px;
            color: var(--pwll4-text-gray);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .painel-white-label-layout-4__user-badge {
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .painel-white-label-layout-4__user-arrow {
            width: 16px;
            height: 16px;
            color: var(--pwll4-text-gray);
            opacity: 1;
            transition: var(--pwll4-transition);
        }

        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__user-arrow {
            opacity: 0;
            width: 0;
        }

        /* MAIN CONTENT */
        .painel-white-label-layout-4__main {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .painel-white-label-layout-4__content {
            flex: 1;
            overflow-y: auto;
            padding: 32px;
        }
        @media(max-width: 540px){
            .painel-white-label-layout-4__content{
                padding-top: 63px;
            }
        }

        .painel-white-label-layout-4__page-title {
            font-size: 32px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 24px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .painel-white-label-layout-4__sidebar {
                position: fixed;
                left: 0;
                top: 0;
                bottom: 0;
                z-index: 1000;
                transform: translateX(-100%);
            }

            .painel-white-label-layout-4__sidebar--mobile-open {
                transform: translateX(0);
            }

            .painel-white-label-layout-4__sidebar--collapsed {
                width: var(--pwll4-sidebar-width);
                transform: translateX(-100%);
            }

            .painel-white-label-layout-4__main {
                width: 100%;
            }

            .painel-white-label-layout-4__toggle {
                display: none;
            }

            .painel-white-label-layout-4__mobile-toggle {
                display: flex;
                position: fixed;
                left: 16px;
                top: 16px;
                z-index: 999;
                background: white;
                border: none;
                color: #1e293b;
                cursor: pointer;
                padding: 8px;
                border-radius: 8px;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            }

            .painel-white-label-layout-4__mobile-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }

            .painel-white-label-layout-4__mobile-overlay--visible {
                display: block;
            }
        }


        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__search,
        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__menu-scroll,
        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__menu-section,
        .painel-white-label-layout-4__sidebar--collapsed .painel-white-label-layout-4__profile{
            display: none !important;
        }






        /* Stats Grid */
.painel-white-label-layout-4__stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.painel-white-label-layout-4__stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.painel-white-label-layout-4__stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.painel-white-label-layout-4__stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.painel-white-label-layout-4__stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.painel-white-label-layout-4__stat-icon--blue {
    background: #eff6ff;
    color: #3b82f6;
}

.painel-white-label-layout-4__stat-icon--green {
    background: #f0fdf4;
    color: #10b981;
}

.painel-white-label-layout-4__stat-icon--purple {
    background: #faf5ff;
    color: #8b5cf6;
}

.painel-white-label-layout-4__stat-icon--orange {
    background: #fff7ed;
    color: #f59e0b;
}

.painel-white-label-layout-4__stat-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.painel-white-label-layout-4__stat-trend--up {
    background: #f0fdf4;
    color: #10b981;
}

.painel-white-label-layout-4__stat-trend--down {
    background: #fef2f2;
    color: #ef4444;
}

.painel-white-label-layout-4__stat-body {
    display: flex;
    flex-direction: column;
}

.painel-white-label-layout-4__stat-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.painel-white-label-layout-4__stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.painel-white-label-layout-4__stat-description {
    font-size: 12px;
    color: #94a3b8;
}

/* Charts Row */
.painel-white-label-layout-4__charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.painel-white-label-layout-4__chart-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.painel-white-label-layout-4__chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.painel-white-label-layout-4__chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.painel-white-label-layout-4__chart-subtitle {
    font-size: 14px;
    color: #64748b;
}

.painel-white-label-layout-4__chart-select {
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #475569;
    background: white;
    cursor: pointer;
    outline: none;
}

.painel-white-label-layout-4__chart-select:focus {
    border-color: #3b82f6;
}

.painel-white-label-layout-4__chart-body {
    height: 250px;
}

/* Bar Chart */
.painel-white-label-layout-4__bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 12px;
}

.painel-white-label-layout-4__bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.painel-white-label-layout-4__bar {
    width: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.painel-white-label-layout-4__bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

.painel-white-label-layout-4__bar-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Category List */
.painel-white-label-layout-4__category-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.painel-white-label-layout-4__category-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px;
    align-items: center;
    gap: 16px;
}

.painel-white-label-layout-4__category-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.painel-white-label-layout-4__category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.painel-white-label-layout-4__category-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.painel-white-label-layout-4__category-progress {
    background: #f1f5f9;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.painel-white-label-layout-4__category-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.painel-white-label-layout-4__category-value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-align: right;
}

/* Table Card */
.painel-white-label-layout-4__table-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.painel-white-label-layout-4__table-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.painel-white-label-layout-4__table-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.painel-white-label-layout-4__table-subtitle {
    font-size: 14px;
    color: #64748b;
}

.painel-white-label-layout-4__table-btn {
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.painel-white-label-layout-4__table-btn:hover {
    background: #2563eb;
}

.painel-white-label-layout-4__table-wrapper {
    overflow-x: auto;
}

.painel-white-label-layout-4__table {
    width: 100%;
    border-collapse: collapse;
}

.painel-white-label-layout-4__table-head {
    background: #f8fafc;
}

.painel-white-label-layout-4__table-th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.painel-white-label-layout-4__table-body {
    background: white;
}

.painel-white-label-layout-4__table-row {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.painel-white-label-layout-4__table-row:hover {
    background: #f8fafc;
}

.painel-white-label-layout-4__table-td {
    padding: 16px;
    font-size: 14px;
    color: #1e293b;
}

.painel-white-label-layout-4__table-id {
    font-weight: 600;
    color: #3b82f6;
}

.painel-white-label-layout-4__table-customer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.painel-white-label-layout-4__table-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.painel-white-label-layout-4__table-customer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.painel-white-label-layout-4__table-customer-name {
    font-weight: 500;
    color: #1e293b;
}

.painel-white-label-layout-4__table-customer-email {
    font-size: 12px;
    color: #64748b;
}

.painel-white-label-layout-4__table-date {
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
}

.painel-white-label-layout-4__table-time {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.painel-white-label-layout-4__table-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.painel-white-label-layout-4__table-badge--success {
    background: #f0fdf4;
    color: #10b981;
}

.painel-white-label-layout-4__table-badge--warning {
    background: #fef3c7;
    color: #f59e0b;
}

.painel-white-label-layout-4__table-badge--info {
    background: #eff6ff;
    color: #3b82f6;
}

.painel-white-label-layout-4__table-badge--danger {
    background: #fef2f2;
    color: #ef4444;
}

.painel-white-label-layout-4__table-price {
    font-weight: 600;
    color: #1e293b;
}

.painel-white-label-layout-4__table-actions {
    display: flex;
    gap: 8px;
}

.painel-white-label-layout-4__table-action-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.painel-white-label-layout-4__table-action-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

/* Responsive */
@media (max-width: 1024px) {
    .painel-white-label-layout-4__stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .painel-white-label-layout-4__charts-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .painel-white-label-layout-4__stats-grid {
        grid-template-columns: 1fr;
    }

    .painel-white-label-layout-4__table-wrapper {
        overflow-x: scroll;
    }

    .painel-white-label-layout-4__table {
        min-width: 800px;
    }

    .painel-white-label-layout-4__chart-header {
        flex-direction: column;
        gap: 12px;
    }
}




   iframe{
                margin-top:30px;
                border-radius: 12px;
            }

            .jconfirm-box{
                width: 360px !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .jconfirm-box img{
                display: block;
                margin-left: auto !important;
                margin-right: auto !important;
            }


              /* Side Panel Styles */
        .sideAction-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .sideAction-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sideAction-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: 784px;
            max-width: 100%;
            height: 100vh;
            background: #f1f1f1;
            box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.1), -20px 0 25px -5px rgba(0, 0, 0, 0.04);
            z-index: 9999;
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

         .sideAction-panel input,  .sideAction-panel textarea,  .sideAction-panel  select{
            background: #fff !important;
            border-color: #ccc !important;
         }

        .sideAction-panel.active {
            transform: translateX(0);
        }

        .sideAction-header {
            padding: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: between;
            align-items: center;
            background: #f9fafb;
            min-height: 80px;
        }

        .sideAction-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin: 0;
            flex: 1;
        }

        .sideAction-close {
            width: 40px;
            height: 40px;
            border: none;
            background: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .sideAction-close:hover {
            background: #f3f4f6;
            transform: scale(1.05);
        }

        .sideAction-close svg {
            width: 20px;
            height: 20px;
            color: #6b7280;
        }

        .sideAction-content {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        /* Skeleton Loading Styles */
        .sideAction-skeleton {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .sideAction-skeleton-line {
            height: 1rem;
            background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
            border-radius: 0.25rem;
            margin-bottom: 0.75rem;
        }

        .sideAction-skeleton-box {
            height: 3rem;
            background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }

        .sideAction-skeleton-circle {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
            border-radius: 50%;
            margin-bottom: 1rem;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* Responsive */
        @media (max-width: 640px) {
            .sideAction-panel {
                width: 100%;
            }
        }

        .sideAction-panel .sideAction-content .botao-principal,
        .sideAction-panel .sideAction-content .botao-principal:hover,
        .sideAction-panel .sideAction-content .botao-principal:active {
            background: #2e1d6f !important;
            outline: none !important;
            cursor: pointer;
            color: #fff !important;
            border-color: #2e1d6f !important;
        }


        #confirmacoes,
        #mensagemResultado{
            position: absolute;
            top: 20px;
            left: 48px;
            width: 400px;
            z-index: 1;
        }

        .tabela-painel-3__filter{
            font-size: 13px !important;
        }

        .tabela-painel-3__filter.bg-red-500,
        .tabela-painel-3__filter.bg-red-500:hover,
        .tabela-painel-3__filter.bg-red-500:active{
            background: #ff0000 !important;
            color: #fff !important;
        }


        #csvFileInput{
            display: none;
        }

        label[for="csvFileInput"] {
           position: relative;
            display: block;
            cursor: pointer;
            padding: 8px 16px;
            height: 100px;
            padding-top: 36px;
            background-color: #f9f9f9;
            color: #000;
            text-align: center;
            border: 2px dotted #666;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
        }


        .mapa{
            position: relative;
            display: block;
            width: 100%;
            height: 590px;
            background: #f2f2f2;
            border-radius: 10px;
            margin-top:20px;
        }