body {
    min-height: 100vh;
}

.card {
    border-radius: 0.85rem;
}


.navbar .container {
    gap: 20px;
}

.navbar-nav {
    gap: 20px;
}

.dashboard-evolution-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.dashboard-evolution-row:last-child {
    border-bottom: 0;
}

.dashboard-evolution-label {
    width: 52px;
    flex: 0 0 52px;
    padding-top: 2px;
}

.dashboard-evolution-bars {
    flex: 1;
}

.dashboard-bar-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.dashboard-bar-line:last-child {
    margin-bottom: 0;
}

.dashboard-bar-line > span:first-child {
    width: 58px;
    flex: 0 0 58px;
}

.dashboard-bar-line > span:last-child {
    width: 105px;
    flex: 0 0 105px;
    text-align: right;
}

@media (max-width: 576px) {
    .dashboard-evolution-row {
        gap: 8px;
    }

    .dashboard-bar-line > span:last-child {
        width: 82px;
        flex-basis: 82px;
    }
}

/* V14 - melhorias de usabilidade */
.table-responsive .table th,
.table-responsive .table td {
    vertical-align: middle;
}

@media (max-width: 1199.98px) {
    .navbar-nav {
        gap: 0;
        padding-top: .75rem;
    }
}


/* V16 — campos monetários com máscara brasileira */
.money-input {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.money-input::placeholder {
    text-align: right;
}
