/* style.css */
body {
    background: url('assets/img/bg.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: -1;
}

.auth-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
}

.logo {
    max-width: 250px;
    display: block;
    margin: 0 auto 1rem;
}

.highlight {
    background-color: #f0f9ff;
    /* Light blue */
    font-weight: bold;
    color: #1d4ed8;
    /* Dark blue */
}

.chart-container {
    position: relative;
    margin: auto;
    height: 100%;
    width: 100%;
}

#totalExpenses {
    font-size: 2rem;
    color: #28a745;
}

#incomeVsExpenseTitle {
    font-weight: bold;
}

.card-header {
    padding: 1rem 1.25rem;
}

.card-body {
    padding: 1.25rem;
}

.villageBarChart {
    background: #1e1e2f;
    border-radius: 20px;
    padding: 16px;
}

.chart-wrapper {
    /* position: relative; */
    width: 100%;
    height: 300px;
}

.chart-wrapper.trend-chart {
    height: 400px;
    /* Taller for trend chart */
}

.chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}