/* Summa Finance - Tema Customizado */

:root {
    /* Cores principais da marca Summa */
    --summa-green: #C5D86D;      /* Verde lima da logo */
    --summa-dark: #2D3436;       /* Cinza escuro do fundo */
    --summa-gray: #3A3F47;       /* Cinza médio */
    --summa-light-gray: #B2BEC3; /* Cinza claro */
    --summa-white: #FFFFFF;
    
    /* Cores de status */
    --summa-success: #27AE60;
    --summa-warning: #F39C12;
    --summa-danger: #E74C3C;
    --summa-info: #3498DB;
    
    /* Gradientes */
    --summa-gradient: linear-gradient(135deg, #C5D86D 0%, #A8C055 100%);
}

/* Reset de cores do Tailwind para usar paleta Summa */
body {
    background-color: #F5F6FA;
}

/* Navbar */
nav.summa-nav {
    background: var(--summa-dark);
    border-bottom: 3px solid var(--summa-green);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-dark.summa-nav .navbar-brand,
.navbar-dark.summa-nav .navbar-nav .nav-link,
.navbar-dark.summa-nav .navbar-nav .nav-link.show,
.navbar-dark.summa-nav .navbar-nav .dropdown-menu {
    color: var(--summa-light-gray);
}

.navbar-dark.summa-nav .navbar-brand:hover,
.navbar-dark.summa-nav .navbar-nav .nav-link.active,
.navbar-dark.summa-nav .navbar-nav .nav-link:hover,
.navbar-dark.summa-nav .navbar-nav .nav-link:focus {
    color: var(--summa-green);
}

.navbar-dark.summa-nav .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
}

.navbar-dark.summa-nav .dropdown-item {
    border-radius: 8px;
    color: var(--summa-gray);
    font-weight: 500;
}

.navbar-dark.summa-nav .dropdown-item:hover,
.navbar-dark.summa-nav .dropdown-item:focus {
    background-color: rgba(197, 216, 109, 0.15);
    color: var(--summa-dark);
}

nav.summa-nav .logo-text {
    color: var(--summa-green);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.summa-logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--summa-gradient);
    color: var(--summa-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.summa-logo-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--summa-gradient);
    color: var(--summa-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.summa-avatar-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--summa-gradient);
    color: var(--summa-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.hover-summa-link:hover {
    color: var(--summa-green) !important;
}

/* Botões primários */
.btn-summa-primary {
    background: var(--summa-gradient);
    color: var(--summa-dark);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.btn-summa-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 216, 109, 0.4);
}

/* Botões secundários */
.btn-summa-secondary {
    background: var(--summa-dark);
    color: var(--summa-green);
    border: 2px solid var(--summa-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-summa-secondary:hover {
    background: var(--summa-green);
    color: var(--summa-dark);
}

/* Cards */
.card-summa {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-summa:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-summa-header {
    background: linear-gradient(135deg, var(--summa-dark) 0%, var(--summa-gray) 100%);
    color: var(--summa-green);
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
    font-weight: 600;
}

/* Badges */
.badge-summa-active {
    background: var(--summa-green);
    color: var(--summa-dark);
    font-weight: 600;
}

.badge-summa-inactive {
    background: var(--summa-gray);
    color: var(--summa-light-gray);
}

.badge-summa-paid {
    background: var(--summa-success);
    color: white;
}

.badge-summa-pending {
    background: var(--summa-warning);
    color: white;
}

/* Inputs e Forms */
.input-summa {
    border: 2px solid #E1E8ED;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-summa:focus {
    border-color: var(--summa-green);
    box-shadow: 0 0 0 3px rgba(197, 216, 109, 0.1);
    outline: none;
}

/* Tabelas */
.table-summa thead {
    background: var(--summa-dark);
    color: var(--summa-green);
}

.table-summa tbody tr:hover {
    background: rgba(197, 216, 109, 0.05);
}

/* Progress bars */
.progress-summa {
    background: #E1E8ED;
    border-radius: 10px;
    overflow: hidden;
}

.progress-summa-bar {
    background: var(--summa-gradient);
    transition: width 0.3s ease;
}

/* Alertas */
.alert-summa-success {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid var(--summa-success);
    color: var(--summa-success);
}

.alert-summa-warning {
    background: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--summa-warning);
    color: var(--summa-warning);
}

.alert-summa-info {
    background: rgba(197, 216, 109, 0.1);
    border-left: 4px solid var(--summa-green);
    color: var(--summa-dark);
}

/* Dropdown menu */
.dropdown-summa {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.dropdown-summa a {
    color: var(--summa-gray);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-summa a:hover {
    background: rgba(197, 216, 109, 0.1);
    color: var(--summa-dark);
    border-left-color: var(--summa-green);
}

/* Stats cards */
.stat-card-summa {
    background: linear-gradient(135deg, var(--summa-dark) 0%, var(--summa-gray) 100%);
    color: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 216, 109, 0.2);
}

.stat-card-summa:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-card-summa .stat-value {
    color: var(--summa-green);
    font-size: 2.25rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-card-summa .stat-label {
    color: var(--summa-light-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Gráficos */
.chart-container-summa {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Sidebar/Menu lateral */
.sidebar-summa {
    background: var(--summa-dark);
    color: var(--summa-light-gray);
}

.sidebar-summa a {
    color: var(--summa-light-gray);
    transition: all 0.2s ease;
}

.sidebar-summa a:hover,
.sidebar-summa a.active {
    background: rgba(197, 216, 109, 0.1);
    color: var(--summa-green);
    border-left: 3px solid var(--summa-green);
}

/* Modais */
.modal-summa {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-summa-header {
    background: var(--summa-dark);
    color: var(--summa-green);
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

/* Links */
a.link-summa {
    color: var(--summa-green);
    font-weight: 500;
    transition: all 0.2s ease;
}

a.link-summa:hover {
    color: var(--summa-dark);
    text-decoration: underline;
}

/* Animações */
@keyframes summa-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.summa-pulse {
    animation: summa-pulse 2s ease-in-out infinite;
}

.summa-login-bg {
    background: radial-gradient(circle at top, rgba(197, 216, 109, 0.2), transparent 55%), var(--summa-dark);
}

.summa-login-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
    animation: summa-pulse 3s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .stat-card-summa .stat-value {
        font-size: 1.5rem;
    }
}

/* Animações melhoradas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--summa-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A8C055;
}

/* Estados de loading */
.loading-summa {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(197, 216, 109, 0.3);
    border-radius: 50%;
    border-top-color: var(--summa-green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tooltips melhorados */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--summa-dark);
    color: var(--summa-green);
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Transições suaves para elementos interativos */
button, a, input, select, textarea {
    transition: all 0.3s ease;
}

/* Focus states melhorados */
button:focus, a:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 216, 109, 0.3);
}


/* Utilidades migradas do layout anterior */
.flex {
    display: flex !important;
}
.flex-col {
    flex-direction: column !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-1 {
    flex: 1 1 0% !important;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    flex-shrink: 0 !important;
}
.grid {
    display: grid !important;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }
}
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .md\:col-span-5 {
        grid-column: span 5 / span 5;
    }
}
@media (min-width: 992px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 992px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 992px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 0.75rem !important;
}
.gap-4 {
    gap: 1.5rem !important;
}
.gap-6 {
    gap: 2rem !important;
}
@media (min-width: 768px) {
    .gap-md-4 {
        gap: 1.5rem !important;
    }
}
.space-y-1 > * + * {
    margin-top: 0.25rem;
}
.space-x-1 > * + * {
    margin-left: 0.25rem;
}
.space-y-2 > * + * {
    margin-top: 0.5rem;
}
.space-x-2 > * + * {
    margin-left: 0.5rem;
}
.space-y-3 > * + * {
    margin-top: 0.75rem;
}
.space-x-3 > * + * {
    margin-left: 0.75rem;
}
.space-y-4 > * + * {
    margin-top: 1rem;
}
.space-x-4 > * + * {
    margin-left: 1rem;
}
.space-y-6 > * + * {
    margin-top: 1.5rem;
}
.space-x-6 > * + * {
    margin-left: 1.5rem;
}
.items-center {
    align-items: center !important;
}
.items-start {
    align-items: flex-start !important;
}
.items-end {
    align-items: flex-end !important;
}
.justify-between {
    justify-content: space-between !important;
}
.justify-center {
    justify-content: center !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
.p-0 {
    padding: 0rem !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.p-3 {
    padding: 0.75rem !important;
}
.p-4 {
    padding: 1rem !important;
}
.p-5 {
    padding: 1.25rem !important;
}
.p-6 {
    padding: 1.5rem !important;
}
.p-8 {
    padding: 2rem !important;
}
.p-12 {
    padding: 3rem !important;
}
.px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}
.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}
.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}
.px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}
.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}
.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
.px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}
.py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}
.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}
.py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.pt-0 {
    padding-top: 0rem !important;
}
.pt-1 {
    padding-top: 0.25rem !important;
}
.pt-2 {
    padding-top: 0.5rem !important;
}
.pt-3 {
    padding-top: 0.75rem !important;
}
.pt-4 {
    padding-top: 1rem !important;
}
.pt-5 {
    padding-top: 1.25rem !important;
}
.pt-6 {
    padding-top: 1.5rem !important;
}
.pt-8 {
    padding-top: 2rem !important;
}
.pt-12 {
    padding-top: 3rem !important;
}
.pr-0 {
    padding-right: 0rem !important;
}
.pr-1 {
    padding-right: 0.25rem !important;
}
.pr-2 {
    padding-right: 0.5rem !important;
}
.pr-3 {
    padding-right: 0.75rem !important;
}
.pr-4 {
    padding-right: 1rem !important;
}
.pr-5 {
    padding-right: 1.25rem !important;
}
.pr-6 {
    padding-right: 1.5rem !important;
}
.pr-8 {
    padding-right: 2rem !important;
}
.pr-12 {
    padding-right: 3rem !important;
}
.pb-0 {
    padding-bottom: 0rem !important;
}
.pb-1 {
    padding-bottom: 0.25rem !important;
}
.pb-2 {
    padding-bottom: 0.5rem !important;
}
.pb-3 {
    padding-bottom: 0.75rem !important;
}
.pb-4 {
    padding-bottom: 1rem !important;
}
.pb-5 {
    padding-bottom: 1.25rem !important;
}
.pb-6 {
    padding-bottom: 1.5rem !important;
}
.pb-8 {
    padding-bottom: 2rem !important;
}
.pb-12 {
    padding-bottom: 3rem !important;
}
.pl-0 {
    padding-left: 0rem !important;
}
.pl-1 {
    padding-left: 0.25rem !important;
}
.pl-2 {
    padding-left: 0.5rem !important;
}
.pl-3 {
    padding-left: 0.75rem !important;
}
.pl-4 {
    padding-left: 1rem !important;
}
.pl-5 {
    padding-left: 1.25rem !important;
}
.pl-6 {
    padding-left: 1.5rem !important;
}
.pl-8 {
    padding-left: 2rem !important;
}
.pl-12 {
    padding-left: 3rem !important;
}
.m-0 {
    margin: 0rem !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.m-3 {
    margin: 0.75rem !important;
}
.m-4 {
    margin: 1rem !important;
}
.m-5 {
    margin: 1.25rem !important;
}
.m-6 {
    margin: 1.5rem !important;
}
.m-8 {
    margin: 2rem !important;
}
.m-12 {
    margin: 3rem !important;
}
.mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
}
.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}
.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}
.mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}
.mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
}
.mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}
.mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}
.mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}
.my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}
.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}
.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}
.my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.mt-0 {
    margin-top: 0rem !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-3 {
    margin-top: 0.75rem !important;
}
.mt-4 {
    margin-top: 1rem !important;
}
.mt-5 {
    margin-top: 1.25rem !important;
}
.mt-6 {
    margin-top: 1.5rem !important;
}
.mt-8 {
    margin-top: 2rem !important;
}
.mt-12 {
    margin-top: 3rem !important;
}
.mr-0 {
    margin-right: 0rem !important;
}
.mr-1 {
    margin-right: 0.25rem !important;
}
.mr-2 {
    margin-right: 0.5rem !important;
}
.mr-3 {
    margin-right: 0.75rem !important;
}
.mr-4 {
    margin-right: 1rem !important;
}
.mr-5 {
    margin-right: 1.25rem !important;
}
.mr-6 {
    margin-right: 1.5rem !important;
}
.mr-8 {
    margin-right: 2rem !important;
}
.mr-12 {
    margin-right: 3rem !important;
}
.mb-0 {
    margin-bottom: 0rem !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 0.75rem !important;
}
.mb-4 {
    margin-bottom: 1rem !important;
}
.mb-5 {
    margin-bottom: 1.25rem !important;
}
.mb-6 {
    margin-bottom: 1.5rem !important;
}
.mb-8 {
    margin-bottom: 2rem !important;
}
.mb-12 {
    margin-bottom: 3rem !important;
}
.ml-0 {
    margin-left: 0rem !important;
}
.ml-1 {
    margin-left: 0.25rem !important;
}
.ml-2 {
    margin-left: 0.5rem !important;
}
.ml-3 {
    margin-left: 0.75rem !important;
}
.ml-4 {
    margin-left: 1rem !important;
}
.ml-5 {
    margin-left: 1.25rem !important;
}
.ml-6 {
    margin-left: 1.5rem !important;
}
.ml-8 {
    margin-left: 2rem !important;
}
.ml-12 {
    margin-left: 3rem !important;
}
.mt-auto {
    margin-top: auto !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}
.h-2 {
    height: 0.5rem !important;
}
.h-3 {
    height: 0.75rem !important;
}
.h-4 {
    height: 1rem !important;
}
.h-5 {
    height: 1.25rem !important;
}
.h-10 {
    height: 2.5rem !important;
}
.h-12 {
    height: 3rem !important;
}
.h-16 {
    height: 4rem !important;
}
.h-24 {
    height: 6rem !important;
}
.h-32 {
    height: 8rem !important;
}
.h-full {
    height: 100% !important;
}
.w-4 {
    width: 1rem !important;
}
.w-5 {
    width: 1.25rem !important;
}
.w-10 {
    width: 2.5rem !important;
}
.w-24 {
    width: 6rem !important;
}
.w-32 {
    width: 8rem !important;
}
.w-64 {
    width: 16rem !important;
}
.w-96 {
    width: 24rem !important;
}
.w-full {
    width: 100% !important;
}
.w-100 {
    width: 100% !important;
}
.min-w-full {
    min-width: 100%;
}
.min-h-screen {
    min-height: 100vh;
}
.min-vh-100 {
    min-height: 100vh;
}
.max-w-md {
    max-width: 28rem;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-3xl {
    max-width: 48rem;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-6xl {
    max-width: 72rem;
}
.max-w-7xl {
    max-width: 80rem;
}
.font-bold {
    font-weight: 700 !important;
}
.font-semibold {
    font-weight: 600 !important;
}
.font-medium {
    font-weight: 500 !important;
}
.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.uppercase {
    text-transform: uppercase; letter-spacing: 0.08em;
}
.tracking-wider {
    letter-spacing: 0.08em;
}
.tracking-widest {
    letter-spacing: 0.12em;
}
.leading-5 {
    line-height: 1.25rem;
}
.leading-6 {
    line-height: 1.5rem;
}
.text-xs {
    font-size: 0.75rem !important; line-height: 1.2;
}
.text-sm {
    font-size: 0.875rem !important; line-height: 1.4;
}
.text-lg {
    font-size: 1.125rem !important; line-height: 1.6;
}
.text-xl {
    font-size: 1.25rem !important; line-height: 1.6;
}
.text-2xl {
    font-size: 1.5rem !important; line-height: 1.6;
}
.text-3xl {
    font-size: 1.875rem !important; line-height: 1.2;
}
.text-4xl {
    font-size: 2.25rem !important; line-height: 1.2;
}
.text-5xl {
    font-size: 3rem !important; line-height: 1.1;
}
.text-6xl {
    font-size: 3.75rem !important; line-height: 1.1;
}
.text-muted {
    color: #6c757d !important;
}
.text-white {
    color: #ffffff !important;
}
.text-summa-dark {
    color: var(--summa-dark) !important;
}
.text-summa-gray {
    color: var(--summa-gray) !important;
}
.text-summa-green {
    color: var(--summa-green) !important;
}
.text-summa-light-gray {
    color: var(--summa-light-gray) !important;
}
.text-summa-primary {
    color: var(--summa-green) !important;
}
.text-blue-50 {
    color: #EFF6FF !important;
}
.text-blue-100 {
    color: #DBEAFE !important;
}
.text-blue-400 {
    color: #60A5FA !important;
}
.text-blue-500 {
    color: #3B82F6 !important;
}
.text-blue-600 {
    color: #2563EB !important;
}
.text-blue-700 {
    color: #1D4ED8 !important;
}
.text-blue-800 {
    color: #1E40AF !important;
}
.text-gray-50 {
    color: #F9FAFB !important;
}
.text-gray-100 {
    color: #F3F4F6 !important;
}
.text-gray-200 {
    color: #E5E7EB !important;
}
.text-gray-300 {
    color: #D1D5DB !important;
}
.text-gray-400 {
    color: #9CA3AF !important;
}
.text-gray-500 {
    color: #6B7280 !important;
}
.text-gray-600 {
    color: #4B5563 !important;
}
.text-gray-700 {
    color: #374151 !important;
}
.text-gray-800 {
    color: #1F2937 !important;
}
.text-gray-900 {
    color: #111827 !important;
}
.text-green-50 {
    color: #ECFDF5 !important;
}
.text-green-100 {
    color: #D1FAE5 !important;
}
.text-green-600 {
    color: #16A34A !important;
}
.text-green-700 {
    color: #15803D !important;
}
.text-green-800 {
    color: #166534 !important;
}
.text-orange-50 {
    color: #FFF7ED !important;
}
.text-orange-100 {
    color: #FFEDD5 !important;
}
.text-orange-400 {
    color: #FB923C !important;
}
.text-orange-500 {
    color: #F97316 !important;
}
.text-orange-600 {
    color: #EA580C !important;
}
.text-orange-700 {
    color: #C2410C !important;
}
.text-orange-800 {
    color: #9A3412 !important;
}
.text-purple-50 {
    color: #F5F3FF !important;
}
.text-purple-800 {
    color: #5B21B6 !important;
}
.text-red-50 {
    color: #FEF2F2 !important;
}
.text-red-100 {
    color: #FEE2E2 !important;
}
.text-red-400 {
    color: #F87171 !important;
}
.text-red-500 {
    color: #EF4444 !important;
}
.text-red-600 {
    color: #DC2626 !important;
}
.text-red-700 {
    color: #B91C1C !important;
}
.text-red-800 {
    color: #991B1B !important;
}
.text-yellow-50 {
    color: #FFFBEB !important;
}
.text-yellow-100 {
    color: #FEF3C7 !important;
}
.text-yellow-400 {
    color: #FACC15 !important;
}
.text-yellow-700 {
    color: #B45309 !important;
}
.text-yellow-800 {
    color: #92400E !important;
}
.bg-white {
    background-color: #ffffff !important;
}
.bg-summa-dark {
    background-color: var(--summa-dark) !important;
}
.bg-summa-primary {
    background: var(--summa-gradient) !important; color: var(--summa-dark);
}
.bg-body-tertiary {
    background-color: #f8f9fa !important;
}
.bg-gradient-to-br {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(0,0,0,0.05));
}
.bg-blue-50 {
    background-color: #EFF6FF !important;
}
.bg-blue-100 {
    background-color: #DBEAFE !important;
}
.bg-blue-400 {
    background-color: #60A5FA !important;
}
.bg-blue-500 {
    background-color: #3B82F6 !important;
}
.bg-blue-600 {
    background-color: #2563EB !important;
}
.bg-blue-700 {
    background-color: #1D4ED8 !important;
}
.bg-blue-800 {
    background-color: #1E40AF !important;
}
.bg-gray-50 {
    background-color: #F9FAFB !important;
}
.bg-gray-100 {
    background-color: #F3F4F6 !important;
}
.bg-gray-200 {
    background-color: #E5E7EB !important;
}
.bg-gray-300 {
    background-color: #D1D5DB !important;
}
.bg-gray-400 {
    background-color: #9CA3AF !important;
}
.bg-gray-500 {
    background-color: #6B7280 !important;
}
.bg-gray-600 {
    background-color: #4B5563 !important;
}
.bg-gray-700 {
    background-color: #374151 !important;
}
.bg-gray-800 {
    background-color: #1F2937 !important;
}
.bg-gray-900 {
    background-color: #111827 !important;
}
.bg-green-50 {
    background-color: #ECFDF5 !important;
}
.bg-green-100 {
    background-color: #D1FAE5 !important;
}
.bg-green-600 {
    background-color: #16A34A !important;
}
.bg-green-700 {
    background-color: #15803D !important;
}
.bg-green-800 {
    background-color: #166534 !important;
}
.bg-orange-50 {
    background-color: #FFF7ED !important;
}
.bg-orange-100 {
    background-color: #FFEDD5 !important;
}
.bg-orange-400 {
    background-color: #FB923C !important;
}
.bg-orange-500 {
    background-color: #F97316 !important;
}
.bg-orange-600 {
    background-color: #EA580C !important;
}
.bg-orange-700 {
    background-color: #C2410C !important;
}
.bg-orange-800 {
    background-color: #9A3412 !important;
}
.bg-purple-50 {
    background-color: #F5F3FF !important;
}
.bg-purple-800 {
    background-color: #5B21B6 !important;
}
.bg-red-50 {
    background-color: #FEF2F2 !important;
}
.bg-red-100 {
    background-color: #FEE2E2 !important;
}
.bg-red-400 {
    background-color: #F87171 !important;
}
.bg-red-500 {
    background-color: #EF4444 !important;
}
.bg-red-600 {
    background-color: #DC2626 !important;
}
.bg-red-700 {
    background-color: #B91C1C !important;
}
.bg-red-800 {
    background-color: #991B1B !important;
}
.bg-yellow-50 {
    background-color: #FFFBEB !important;
}
.bg-yellow-100 {
    background-color: #FEF3C7 !important;
}
.bg-yellow-400 {
    background-color: #FACC15 !important;
}
.bg-yellow-700 {
    background-color: #B45309 !important;
}
.bg-yellow-800 {
    background-color: #92400E !important;
}
.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.hover\:bg-opacity-10:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.bg-opacity-20 {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.hover\:bg-opacity-20:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.bg-opacity-50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}
.hover\:bg-opacity-50:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
}
.hover\:bg-blue-50:hover {
    background-color: #EFF6FF !important;
}
.hover\:text-blue-50:hover {
    color: #EFF6FF !important;
}
.hover\:bg-blue-100:hover {
    background-color: #DBEAFE !important;
}
.hover\:text-blue-100:hover {
    color: #DBEAFE !important;
}
.hover\:bg-blue-400:hover {
    background-color: #60A5FA !important;
}
.hover\:text-blue-400:hover {
    color: #60A5FA !important;
}
.hover\:bg-blue-500:hover {
    background-color: #3B82F6 !important;
}
.hover\:text-blue-500:hover {
    color: #3B82F6 !important;
}
.hover\:bg-blue-600:hover {
    background-color: #2563EB !important;
}
.hover\:text-blue-600:hover {
    color: #2563EB !important;
}
.hover\:bg-blue-700:hover {
    background-color: #1D4ED8 !important;
}
.hover\:text-blue-700:hover {
    color: #1D4ED8 !important;
}
.hover\:bg-blue-800:hover {
    background-color: #1E40AF !important;
}
.hover\:text-blue-800:hover {
    color: #1E40AF !important;
}
.hover\:bg-gray-50:hover {
    background-color: #F9FAFB !important;
}
.hover\:text-gray-50:hover {
    color: #F9FAFB !important;
}
.hover\:bg-gray-100:hover {
    background-color: #F3F4F6 !important;
}
.hover\:text-gray-100:hover {
    color: #F3F4F6 !important;
}
.hover\:bg-gray-200:hover {
    background-color: #E5E7EB !important;
}
.hover\:text-gray-200:hover {
    color: #E5E7EB !important;
}
.hover\:bg-gray-300:hover {
    background-color: #D1D5DB !important;
}
.hover\:text-gray-300:hover {
    color: #D1D5DB !important;
}
.hover\:bg-gray-400:hover {
    background-color: #9CA3AF !important;
}
.hover\:text-gray-400:hover {
    color: #9CA3AF !important;
}
.hover\:bg-gray-500:hover {
    background-color: #6B7280 !important;
}
.hover\:text-gray-500:hover {
    color: #6B7280 !important;
}
.hover\:bg-gray-600:hover {
    background-color: #4B5563 !important;
}
.hover\:text-gray-600:hover {
    color: #4B5563 !important;
}
.hover\:bg-gray-700:hover {
    background-color: #374151 !important;
}
.hover\:text-gray-700:hover {
    color: #374151 !important;
}
.hover\:bg-gray-800:hover {
    background-color: #1F2937 !important;
}
.hover\:text-gray-800:hover {
    color: #1F2937 !important;
}
.hover\:bg-gray-900:hover {
    background-color: #111827 !important;
}
.hover\:text-gray-900:hover {
    color: #111827 !important;
}
.hover\:bg-green-50:hover {
    background-color: #ECFDF5 !important;
}
.hover\:text-green-50:hover {
    color: #ECFDF5 !important;
}
.hover\:bg-green-100:hover {
    background-color: #D1FAE5 !important;
}
.hover\:text-green-100:hover {
    color: #D1FAE5 !important;
}
.hover\:bg-green-600:hover {
    background-color: #16A34A !important;
}
.hover\:text-green-600:hover {
    color: #16A34A !important;
}
.hover\:bg-green-700:hover {
    background-color: #15803D !important;
}
.hover\:text-green-700:hover {
    color: #15803D !important;
}
.hover\:bg-green-800:hover {
    background-color: #166534 !important;
}
.hover\:text-green-800:hover {
    color: #166534 !important;
}
.hover\:bg-orange-50:hover {
    background-color: #FFF7ED !important;
}
.hover\:text-orange-50:hover {
    color: #FFF7ED !important;
}
.hover\:bg-orange-100:hover {
    background-color: #FFEDD5 !important;
}
.hover\:text-orange-100:hover {
    color: #FFEDD5 !important;
}
.hover\:bg-orange-400:hover {
    background-color: #FB923C !important;
}
.hover\:text-orange-400:hover {
    color: #FB923C !important;
}
.hover\:bg-orange-500:hover {
    background-color: #F97316 !important;
}
.hover\:text-orange-500:hover {
    color: #F97316 !important;
}
.hover\:bg-orange-600:hover {
    background-color: #EA580C !important;
}
.hover\:text-orange-600:hover {
    color: #EA580C !important;
}
.hover\:bg-orange-700:hover {
    background-color: #C2410C !important;
}
.hover\:text-orange-700:hover {
    color: #C2410C !important;
}
.hover\:bg-orange-800:hover {
    background-color: #9A3412 !important;
}
.hover\:text-orange-800:hover {
    color: #9A3412 !important;
}
.hover\:bg-purple-50:hover {
    background-color: #F5F3FF !important;
}
.hover\:text-purple-50:hover {
    color: #F5F3FF !important;
}
.hover\:bg-purple-800:hover {
    background-color: #5B21B6 !important;
}
.hover\:text-purple-800:hover {
    color: #5B21B6 !important;
}
.hover\:bg-red-50:hover {
    background-color: #FEF2F2 !important;
}
.hover\:text-red-50:hover {
    color: #FEF2F2 !important;
}
.hover\:bg-red-100:hover {
    background-color: #FEE2E2 !important;
}
.hover\:text-red-100:hover {
    color: #FEE2E2 !important;
}
.hover\:bg-red-400:hover {
    background-color: #F87171 !important;
}
.hover\:text-red-400:hover {
    color: #F87171 !important;
}
.hover\:bg-red-500:hover {
    background-color: #EF4444 !important;
}
.hover\:text-red-500:hover {
    color: #EF4444 !important;
}
.hover\:bg-red-600:hover {
    background-color: #DC2626 !important;
}
.hover\:text-red-600:hover {
    color: #DC2626 !important;
}
.hover\:bg-red-700:hover {
    background-color: #B91C1C !important;
}
.hover\:text-red-700:hover {
    color: #B91C1C !important;
}
.hover\:bg-red-800:hover {
    background-color: #991B1B !important;
}
.hover\:text-red-800:hover {
    color: #991B1B !important;
}
.hover\:bg-yellow-50:hover {
    background-color: #FFFBEB !important;
}
.hover\:text-yellow-50:hover {
    color: #FFFBEB !important;
}
.hover\:bg-yellow-100:hover {
    background-color: #FEF3C7 !important;
}
.hover\:text-yellow-100:hover {
    color: #FEF3C7 !important;
}
.hover\:bg-yellow-400:hover {
    background-color: #FACC15 !important;
}
.hover\:text-yellow-400:hover {
    color: #FACC15 !important;
}
.hover\:bg-yellow-700:hover {
    background-color: #B45309 !important;
}
.hover\:text-yellow-700:hover {
    color: #B45309 !important;
}
.hover\:bg-yellow-800:hover {
    background-color: #92400E !important;
}
.hover\:text-yellow-800:hover {
    color: #92400E !important;
}
.hover\:text-summa-green:hover {
    color: var(--summa-green) !important;
}
.hover\:bg-summa-gray:hover {
    background-color: rgba(58, 63, 71, 0.25) !important;
}
.hover\:text-red-300:hover {
    color: #FCA5A5 !important;
}
.text-red-300 {
    color: #FCA5A5 !important;
}
.border {
    border: 1px solid #e5e7eb;
}
.border-0 {
    border: 0 !important;
}
.border-4 {
    border-width: 4px !important;
}
.border-b {
    border-bottom: 1px solid #e5e7eb;
}
.border-b-2 {
    border-bottom: 2px solid #e5e7eb;
}
.border-l-4 {
    border-left: 4px solid #e5e7eb;
}
.border-t {
    border-top: 1px solid #e5e7eb;
}
.border-top {
    border-top: 1px solid #e5e7eb !important;
}
.border-start {
    border-left: 1px solid rgba(255,255,255,0.2);
}
.border-transparent {
    border-color: transparent !important;
}
.border-light {
    border-color: rgba(255,255,255,0.2) !important;
}
.border-summa-green {
    border-color: var(--summa-green) !important;
}
.border-blue-50 {
    border-color: #EFF6FF !important;
}
.border-blue-100 {
    border-color: #DBEAFE !important;
}
.border-blue-400 {
    border-color: #60A5FA !important;
}
.border-blue-500 {
    border-color: #3B82F6 !important;
}
.border-blue-600 {
    border-color: #2563EB !important;
}
.border-blue-700 {
    border-color: #1D4ED8 !important;
}
.border-blue-800 {
    border-color: #1E40AF !important;
}
.border-gray-50 {
    border-color: #F9FAFB !important;
}
.border-gray-100 {
    border-color: #F3F4F6 !important;
}
.border-gray-200 {
    border-color: #E5E7EB !important;
}
.border-gray-300 {
    border-color: #D1D5DB !important;
}
.border-gray-400 {
    border-color: #9CA3AF !important;
}
.border-gray-500 {
    border-color: #6B7280 !important;
}
.border-gray-600 {
    border-color: #4B5563 !important;
}
.border-gray-700 {
    border-color: #374151 !important;
}
.border-gray-800 {
    border-color: #1F2937 !important;
}
.border-gray-900 {
    border-color: #111827 !important;
}
.border-green-50 {
    border-color: #ECFDF5 !important;
}
.border-green-100 {
    border-color: #D1FAE5 !important;
}
.border-green-600 {
    border-color: #16A34A !important;
}
.border-green-700 {
    border-color: #15803D !important;
}
.border-green-800 {
    border-color: #166534 !important;
}
.border-orange-50 {
    border-color: #FFF7ED !important;
}
.border-orange-100 {
    border-color: #FFEDD5 !important;
}
.border-orange-400 {
    border-color: #FB923C !important;
}
.border-orange-500 {
    border-color: #F97316 !important;
}
.border-orange-600 {
    border-color: #EA580C !important;
}
.border-orange-700 {
    border-color: #C2410C !important;
}
.border-orange-800 {
    border-color: #9A3412 !important;
}
.border-purple-50 {
    border-color: #F5F3FF !important;
}
.border-purple-800 {
    border-color: #5B21B6 !important;
}
.border-red-50 {
    border-color: #FEF2F2 !important;
}
.border-red-100 {
    border-color: #FEE2E2 !important;
}
.border-red-400 {
    border-color: #F87171 !important;
}
.border-red-500 {
    border-color: #EF4444 !important;
}
.border-red-600 {
    border-color: #DC2626 !important;
}
.border-red-700 {
    border-color: #B91C1C !important;
}
.border-red-800 {
    border-color: #991B1B !important;
}
.border-yellow-50 {
    border-color: #FFFBEB !important;
}
.border-yellow-100 {
    border-color: #FEF3C7 !important;
}
.border-yellow-400 {
    border-color: #FACC15 !important;
}
.border-yellow-700 {
    border-color: #B45309 !important;
}
.border-yellow-800 {
    border-color: #92400E !important;
}
.rounded {
    border-radius: 0.25rem !important;
}
.rounded-md {
    border-radius: 0.375rem !important;
}
.rounded-lg {
    border-radius: 0.75rem !important;
}
.rounded-2xl {
    border-radius: 1.5rem !important;
}
.rounded-4 {
    border-radius: 1.25rem !important;
}
.rounded-full {
    border-radius: 999px !important;
}
.rounded-pill {
    border-radius: 50rem !important;
}
.shadow {
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}
.shadow-sm {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}
.shadow-lg {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
}
.shadow-none {
    box-shadow: none !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.overflow-y-auto {
    overflow-y: auto !important;
}
.overflow-x-auto {
    overflow-x: auto !important;
}
.relative {
    position: relative !important;
}
.absolute {
    position: absolute !important;
}
.fixed {
    position: fixed !important;
}
.inset-0 {
    inset: 0;
}
.z-50 {
    z-index: 1050;
}
.hidden {
    display: none !important;
}
.block {
    display: block !important;
}
.inline-block {
    display: inline-block !important;
}
@media (min-width: 576px) {
    .sm\:flex { display: flex !important; }
    .sm\:items-center { align-items: center !important; }
    .sm\:ml-6 { margin-left: 1.5rem !important; }
    .sm\:ml-8 { margin-left: 2rem !important; }
    .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    .sm\:space-x-6 > * + * { margin-left: 1.5rem !important; }
}
@media (min-width: 992px) {
    .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
}
.divide-y > * + * {
    border-top: 1px solid #e5e7eb;
}
.divide-gray-200 > * + * {
    border-top: 1px solid #e5e7eb;
}
.ring-1 {
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.ring-black {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.ring-opacity-5 {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.focus\:ring-2:focus {
    box-shadow: 0 0 0 0.25rem rgba(197, 216, 109, 0.25); outline: none;
}
.focus\:ring-blue-500:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.35); outline: none;
}
.focus\:ring-summa-green:focus {
    box-shadow: 0 0 0 0.25rem rgba(197, 216, 109, 0.35); outline: none;
}
.focus\:ring-summa-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(197, 216, 109, 0.35); outline: none;
}
.focus\:border-transparent:focus {
    border-color: transparent !important;
}
.hover\:border-summa-green:hover {
    border-color: var(--summa-green) !important;
}
.btn-summa-danger {
    background-color: #DC2626; color: #fff; border: none; border-radius: 12px;
}
.btn-summa-danger:hover {
    background-color: #B91C1C; color: #fff;
}
.transition {
    transition: all 0.2s ease-in-out;
}

/* Novos Estilos Modernos */
.hover-shadow {
    transition: all 0.2s ease;
}
.hover-shadow:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}

.credit-card-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hover-opacity-100 {
    transition: opacity 0.2s ease;
}
.hover-opacity-100:hover {
    opacity: 1 !important;
}

/* Cards Modernos */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* Rounded Pills */
.rounded-pill {
    border-radius: 50rem !important;
}

/* Badges Suaves */
.badge {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
}

/* Botões Modernos */
.btn {
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Shadow Suave */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Container Fluid Padding */
.container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Opacity Utilities */
.opacity-75 {
    opacity: 0.75;
}

.opacity-100 {
    opacity: 1;
}
