/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    background-color: #F9FAFB;
}

/* Cores personalizadas */
.bg-primary {
    background-color: #6D28D9 !important;
}

.btn-primary {
    background-color: #6D28D9;
    border-color: #6D28D9;
}

.btn-primary:hover {
    background-color: #5B21B6;
    border-color: #5B21B6;
}

/* Cabeçalhos */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

/* Cards */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

/* Ícones de categorias */
.category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
}

/* Dashboard */
.dashboard-card {
    transition: transform 0.2s;
}

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

.summary-card {
    border-left: 4px solid;
}

.summary-income {
    border-color: #059669;
}

.summary-expense {
    border-color: #DC2626;
}

.summary-balance {
    border-color: #6D28D9;
}

/* Tabelas */
.table-hover tbody tr:hover {
    background-color: rgba(109, 40, 217, 0.05);
}

/* Formulários */
.form-control:focus {
    border-color: #6D28D9;
    box-shadow: 0 0 0 0.25rem rgba(109, 40, 217, 0.25);
}

/* Paginação */
.page-item.active .page-link {
    background-color: #6D28D9;
    border-color: #6D28D9;
}

.page-link {
    color: #6D28D9;
}

.page-link:hover {
    color: #5B21B6;
}

/* Cores para status de transações */
.status-completed {
    color: #059669;
}

.status-pending {
    color: #D97706;
}

.status-canceled {
    color: #DC2626;
}

/* Cores para tipos de categorias */
.category-expense {
    background-color: #DC2626;
}

.category-income {
    background-color: #059669;
}

.category-transfer {
    background-color: #6D28D9;
}

/* Progresso de metas */
.goal-progress {
    height: 10px;
    border-radius: 5px;
}

/* Corrigir dropdown com apenas ícone ellipsis */
.dropdown-toggle.no-caret::after {
    display: none !important;
}

.dropdown-toggle.no-caret {
    text-decoration: none !important;
    border: none !important;
    background: none !important;
}

.dropdown-toggle.no-caret:hover,
.dropdown-toggle.no-caret:focus,
.dropdown-toggle.no-caret:active {
    text-decoration: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

/* Estilo para botão dropdown apenas com ícone */
.btn-link.dropdown-toggle.no-caret {
    border: none !important;
    padding: 0 !important;
    background: none !important;
    color: inherit !important;
}

.btn-link.dropdown-toggle.no-caret:hover,
.btn-link.dropdown-toggle.no-caret:focus,
.btn-link.dropdown-toggle.no-caret:active {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
} 