/* =========================
   Admin Painel Assinco CSS
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ===== Base ===== */

.font-sans {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.invisible {
    visibility: hidden;
}

.group:hover .group-hover\:visible {
    visibility: visible;
}

.opacity-0 {
    opacity: 0;
}

.opacity-80 {
    opacity: 0.8;
}

.group:hover .group-hover\:opacity-100,
.hover\:opacity-100:hover {
    opacity: 1;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.value-update-anim {
    animation: flashValue 0.45s ease-out;
}

@keyframes flashValue {
    0% {
        transform: scale(1.03);
        opacity: 0.85;
        color: #60a5fa;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.glass-panel {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.shadow-lg {
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.shadow-xl {
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.shadow-2xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.38);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transform {
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0));
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y, 0));
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y));
}

.cursor-pointer {
    cursor: pointer;
}

.outline-none,
.focus\:outline-none:focus {
    outline: none;
}

.border-none {
    border: none;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.align-top {
    vertical-align: top;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.uppercase {
    text-transform: uppercase;
}

.leading-none {
    line-height: 1;
}

.object-cover {
    object-fit: cover;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

/* ===== Flex / Grid ===== */

.flex-1 {
    flex: 1 1 0%;
}

.shrink-0 {
    flex-shrink: 0;
}

.flex-col {
    flex-direction: column;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.space-x-1>*+* {
    margin-left: 0.25rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.space-x-3>*+* {
    margin-left: 0.75rem;
}

.space-x-4>*+* {
    margin-left: 1rem;
}

.space-y-1>*+* {
    margin-top: 0.25rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

/* ===== Width / Height ===== */

.w-full {
    width: 100%;
}

.w-1\/3 {
    width: 33.333333%;
}

.w-4 {
    width: 1rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.w-28 {
    width: 7rem;
}

.w-32 {
    width: 8rem;
}

.w-48 {
    width: 12rem;
}

.w-64 {
    width: 16rem;
}

.max-w-md {
    max-width: 28rem;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-2 {
    height: 0.5rem;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-28 {
    height: 7rem;
}

.h-32 {
    height: 8rem;
}

.h-40 {
    height: 10rem;
}

.h-48 {
    height: 12rem;
}

.h-56 {
    height: 14rem;
}

.h-64 {
    height: 16rem;
}

.max-h-80 {
    max-height: 20rem;
}

.max-h-96 {
    max-height: 24rem;
}

/* ===== Position ===== */

.inset-0 {
    inset: 0;
}

.top-0 {
    top: 0;
}

.top-1\/2 {
    top: 50%;
}

.top-4 {
    top: 1rem;
}

.left-3 {
    left: 0.75rem;
}

.left-1\/2 {
    left: 50%;
}

.right-0 {
    right: 0;
}

.right-4 {
    right: 1rem;
}

/* ===== Margin ===== */

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Padding ===== */

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pl-10 {
    padding-left: 2.5rem;
}

.pr-4 {
    padding-right: 1rem;
}

/* ===== Border / Radius ===== */

.border {
    border-width: 1px;
    border-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-l {
    border-left-width: 1px;
    border-left-style: solid;
}

.border-r {
    border-right-width: 1px;
    border-right-style: solid;
}

.border-dashed {
    border-style: dashed;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-t-sm {
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
}

.first\:rounded-t-lg:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.last\:rounded-b-lg:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.ring-2 {
    --tw-ring-color: #ffffff;
    box-shadow: 0 0 0 2px var(--tw-ring-color);
}

.ring-white {
    --tw-ring-color: #ffffff;
}

/* ===== Font ===== */

.text-\[10px\] {
    font-size: 9px;
    line-height: 0.9rem;
}

.text-\[11px\] {
    font-size: 10px;
    line-height: 0.95rem;
}

.text-xs {
    font-size: 0.6875rem;
    line-height: 0.95rem;
}

.text-sm {
    font-size: 0.8125rem;
    line-height: 1.1rem;
}

.text-base {
    font-size: 0.9375rem;
    line-height: 1.3rem;
}

.text-lg {
    font-size: 1rem;
    line-height: 1.35rem;
}

.text-xl {
    font-size: 1.125rem;
    line-height: 1.45rem;
}

.text-2xl {
    font-size: 1.25rem;
    line-height: 1.6rem;
}

.text-3xl {
    font-size: 1.5rem;
    line-height: 1.9rem;
}

.text-4xl {
    font-size: 1.875rem;
    line-height: 2.2rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* ===== Colors: text ===== */

.text-white {
    color: #ffffff;
}

.text-gray-100 {
    color: #f3f4f6;
}

.text-gray-200 {
    color: #e5e7eb;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-blue-300 {
    color: #93c5fd;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-blue-500 {
    color: #3b82f6;
}

.text-green-400 {
    color: #4ade80;
}

.text-green-500 {
    color: #22c55e;
}

.text-yellow-400 {
    color: #facc15;
}

.text-red-400 {
    color: #f87171;
}

.text-red-500 {
    color: #ef4444;
}

.text-orange-500 {
    color: #f97316;
}

.text-purple-400 {
    color: #c084fc;
}

.text-purple-500 {
    color: #a855f7;
}

.text-indigo-200 {
    color: #c7d2fe;
}

.text-indigo-300 {
    color: #a5b4fc;
}

.text-indigo-500 {
    color: #6366f1;
}

.text-emerald-200 {
    color: #a7f3d0;
}

.text-emerald-500 {
    color: #10b981;
}

.text-cyan-500 {
    color: #06b6d4;
}

/* ===== Colors: background ===== */

.bg-transparent {
    background-color: transparent;
}

.bg-black\/60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-\[\#1A1D27\] {
    background-color: #1A1D27;
}

.bg-\[\#1a1d27\] {
    background-color: #1a1d27;
}

.bg-\[\#1e212b\] {
    background-color: #1e212b;
}

.bg-\[\#232736\] {
    background-color: #232736;
}

.bg-opacity-10 {
    --tw-bg-opacity: 0.1;
}

.bg-blue-500 {
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity, 1));
}

.bg-blue-600 {
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity, 1));
}

.bg-green-500 {
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity, 1));
}

.bg-red-500 {
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}

.bg-yellow-500 {
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity, 1));
}

.bg-orange-500 {
    background-color: rgba(249, 115, 22, var(--tw-bg-opacity, 1));
}

.bg-purple-500 {
    background-color: rgba(168, 85, 247, var(--tw-bg-opacity, 1));
}

.bg-indigo-500 {
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity, 1));
}

.bg-cyan-500 {
    background-color: rgba(6, 182, 212, var(--tw-bg-opacity, 1));
}

.bg-emerald-500 {
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity, 1));
}

.bg-gray-500 {
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity, 1));
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-750 {
    background-color: #2a3342;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-gray-800\/50 {
    background-color: rgba(31, 41, 55, 0.5);
}

.bg-blue-600\/10 {
    background-color: rgba(37, 99, 235, 0.1);
}

.bg-blue-600\/20 {
    background-color: rgba(37, 99, 235, 0.2);
}

.bg-blue-900\/10 {
    background-color: rgba(30, 58, 138, 0.1);
}

.bg-blue-900\/40 {
    background-color: rgba(30, 58, 138, 0.4);
}

.bg-indigo-900\/30 {
    background-color: rgba(49, 46, 129, 0.3);
}

.bg-green-500\/10 {
    background-color: rgba(34, 197, 94, 0.1);
}

.bg-green-900\/10 {
    background-color: rgba(20, 83, 45, 0.1);
}

.bg-green-900\/20 {
    background-color: rgba(20, 83, 45, 0.2);
}

.bg-yellow-500\/10 {
    background-color: rgba(234, 179, 8, 0.1);
}

.bg-yellow-900\/20 {
    background-color: rgba(113, 63, 18, 0.2);
}

.bg-red-500\/10 {
    background-color: rgba(239, 68, 68, 0.1);
}

.bg-red-900\/10 {
    background-color: rgba(127, 29, 29, 0.1);
}

.bg-red-900\/20 {
    background-color: rgba(127, 29, 29, 0.2);
}

.bg-blue-500\/10 {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-gray-500\/10 {
    background-color: rgba(107, 114, 128, 0.1);
}

.bg-white\/\[0\.02\] {
    background-color: rgba(255, 255, 255, 0.02);
}

/* ===== Colors: border ===== */

.border-transparent {
    border-color: transparent;
}

.border-gray-600 {
    border-color: #4b5563;
}

.border-gray-700 {
    border-color: #374151;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.border-gray-700\/50 {
    border-color: rgba(55, 65, 81, 0.5);
}

.border-gray-700\/60 {
    border-color: rgba(55, 65, 81, 0.6);
}

.border-gray-500\/20 {
    border-color: rgba(107, 114, 128, 0.2);
}

.border-blue-500\/20 {
    border-color: rgba(59, 130, 246, 0.2);
}

.border-blue-500\/30 {
    border-color: rgba(59, 130, 246, 0.3);
}

.border-blue-500\/50 {
    border-color: rgba(59, 130, 246, 0.5);
}

.border-indigo-500\/30 {
    border-color: rgba(99, 102, 241, 0.3);
}

.border-green-500\/20 {
    border-color: rgba(34, 197, 94, 0.2);
}

.border-yellow-500\/20 {
    border-color: rgba(234, 179, 8, 0.2);
}

.border-red-500\/20 {
    border-color: rgba(239, 68, 68, 0.2);
}

.border-emerald-500\/30 {
    border-color: rgba(16, 185, 129, 0.3);
}

/* ===== Gradients ===== */

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.from-blue-600 {
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.from-red-600 {
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
}

.from-indigo-500 {
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.from-indigo-900 {
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
}

.from-emerald-900 {
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
}

.from-blue-900\/40 {
    --tw-gradient-from: rgba(30, 58, 138, 0.4);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.from-f59e0b {
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.to-cyan-400 {
    --tw-gradient-to: #22d3ee;
}

.to-yellow-400 {
    --tw-gradient-to: #facc15;
}

.to-orange-400 {
    --tw-gradient-to: #fb923c;
}

.to-green-400 {
    --tw-gradient-to: #4ade80;
}

.to-pink-500 {
    --tw-gradient-to: #ec4899;
}

.to-\[\#232736\] {
    --tw-gradient-to: #232736;
}

.to-\[\#1e212b\] {
    --tw-gradient-to: #1e212b;
}

.via-purple-500 {
    --tw-gradient-stops: var(--tw-gradient-from), #a855f7, var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

/* ===== Hover / Focus ===== */

.hover\:bg-gray-800:hover {
    background-color: #1f2937;
}

.hover\:bg-gray-800\/50:hover {
    background-color: rgba(31, 41, 55, 0.5);
}

.hover\:bg-gray-700:hover {
    background-color: #374151;
}

.hover\:bg-gray-600:hover {
    background-color: #4b5563;
}

.hover\:bg-blue-600\/35:hover {
    background-color: rgba(37, 99, 235, 0.35);
}

.hover\:bg-blue-600\/40:hover {
    background-color: rgba(37, 99, 235, 0.4);
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:bg-white\/\[0\.02\]:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-gray-200:hover {
    color: #e5e7eb;
}

.hover\:text-blue-300:hover {
    color: #93c5fd;
}

.hover\:border-blue-500:hover {
    border-color: #3b82f6;
}

.hover\:border-blue-500\/50:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.hover\:border-green-500:hover {
    border-color: #22c55e;
}

.focus\:border-blue-500:focus {
    border-color: #3b82f6;
}

.focus\:ring-1:focus {
    box-shadow: 0 0 0 1px var(--tw-ring-color, #3b82f6);
}

.focus\:ring-blue-500:focus {
    --tw-ring-color: #3b82f6;
}

/* ===== Special ===== */

.placeholder\:text-gray-500::placeholder {
    color: #6b7280;
}

.bg-\[\#232736\] .value-update-anim,
.bg-\[\#1A1D27\] .value-update-anim,
.bg-\[\#1a1d27\] .value-update-anim,
.bg-\[\#1e212b\] .value-update-anim {
    will-change: transform, opacity;
}

/* ===== Responsive ===== */

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .md\:col-span-3 {
        grid-column: span 3 / span 3;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .lg\:grid-cols-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .xl\:grid-cols-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .xl\:grid-cols-\[1\.2fr_1fr\] {
        grid-template-columns: 1.2fr 1fr;
    }
}

.dashboard-geral-container,
.dashboard-geral-container * {
    box-sizing: border-box;
}

.dashboard-geral-container {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #1A1D27;
    font-size: 13px;
}

.dashboard-geral-container .assinco-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: #1A1D27;
}

.dashboard-geral-container .assinco-sidebar {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #111827 0%, #1A1D27 100%);
    border-right: 1px solid rgba(55, 65, 81, 0.7);
    position: relative;
    z-index: 20;
}

.dashboard-geral-container .assinco-sidebar-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 0;
}

.dashboard-geral-container .assinco-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 12px 16px;
}

.dashboard-geral-container .assinco-menu-button {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-geral-container .assinco-menu-button span {
    display: flex;
    align-items: center;
}

.dashboard-geral-container .assinco-menu-button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.dashboard-geral-container .assinco-menu-button--default:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.18);
    color: #ffffff;
}

.dashboard-geral-container .assinco-menu-button--active {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.18), rgba(99, 102, 241, 0.12));
    border-color: rgba(59, 130, 246, 0.35);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.dashboard-geral-container .assinco-main {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #1A1D27;
}



.dashboard-geral-container img {
    display: block;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .dashboard-geral-container .assinco-layout {
        flex-direction: column;
    }

    .dashboard-geral-container .assinco-sidebar {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(55, 65, 81, 0.7);
    }
}

.dashboard-geral-container .assinco-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}




.dashboard-geral-container .assinco-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.dashboard-geral-container .assinco-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    background: transparent;
}

.dashboard-geral-container .assinco-table thead {
    display: table-header-group !important;
}

.dashboard-geral-container .assinco-table tbody {
    display: table-row-group !important;
}

.dashboard-geral-container .assinco-table tr {
    display: table-row !important;
}

.dashboard-geral-container .assinco-table th,
.dashboard-geral-container .assinco-table td {
    display: table-cell !important;
    padding: 12px 14px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(55, 65, 81, 0.75);
}

.dashboard-geral-container .assinco-table th {
    background: #1f2937 !important;
    color: #9ca3af;
    font-size: 11px;
    line-height: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.dashboard-geral-container .assinco-table td {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.2rem;
}

.dashboard-geral-container .assinco-table tbody tr:hover {
    background: rgba(31, 41, 55, 0.3);
}

.dashboard-geral-container .assinco-table td>* {
    max-width: 100%;
}

@media (min-width: 1600px) {
    .xxl\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}