/* ======== Estilos Gerais ======== */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Cabeçalhos */
h1, h3 {
    font-weight: bold;
    color: #343a40;
}

/* ======== Cards ======== */
.card {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.03);
}

/* ======== Tabela de Movimentações ======== */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    background-color: #343a40;
    color: white;
    text-align: center;
}

/* Cores de linha por tipo */
.linha-entrada {
    background-color: #d1e7dd !important; /* Verde claro */
}

.linha-saida {
    background-color: #f8d7da !important; /* Vermelho claro */
}

.linha-vendas {
    background-color: #cff4fc !important; /* Azul claro */
}

.linha-compras {
    background-color: #fff3cd !important; /* Amarelo claro */
}

/* ======== Botões ======== */
.btn-primary {
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 16px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* ======== Rodapé ======== */
footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    border-radius: 10px;
}
