:root {
    --primary: #00875F;
    --primary-light: #00B37E;
    --background: #121214;
    --surface: #202024;
    --text: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
}

.card {
    background-color: var(--surface);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

input, select {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
}

button {
    transition: all 0.2s ease;
}

.transaction-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Estilização da scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--surface);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Estilização para os ícones e elementos interativos */
.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.page {
    transition: opacity 0.3s ease;
}

.page.hidden {
    display: none;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.text-green-500::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.table-container {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    background: var(--background);
}

.table-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

input[type="text"], select {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

input[type="text"]:focus, select:focus {
    border-color: var(--primary);
    outline: none;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
}

.donut-chart svg {
    transform: rotate(-90deg);
}

.donut-chart path {
    transition: all 0.3s ease;
}

.donut-chart path:hover {
    opacity: 0.8;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chart-legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Estilos para os botões de ação */
.action-button {
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.action-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.action-button.delete:hover {
    color: #F75A68;
    background-color: rgba(247, 90, 104, 0.1);
} 