/* pricingstyle.css */

.brand-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #0f172a !important; 
    color: white !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
}

.dark .brand-logo {
    background-color: white !important;
    color: #0f172a !important;
}

.table-row-hover {
    transition: background-color 0.2s ease;
}

.table-row-hover:hover {
    background-color: rgba(99, 102, 241, 0.03);
}

.dark .table-row-hover:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.section-skew {
    transform: skewY(-1.5deg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.dark ::-webkit-scrollbar-thumb { background: #334155; }