* {
font-family: 'Poppins', sans-serif;
}

body {
background: linear-gradient(135deg, #e0f0e8 0%, #cfe3db 25%, #f9f2e7 50%, #ffe6d5 100%);
background-attachment: fixed;
min-height: 100vh;
padding-bottom: 20px;
}

/* Soft color palette */
:root {
--soft-green: #A3C9B6;
--soft-sand: #F4EAD5;
--soft-coral: #E7CBB5;
--soft-teal: #B7D7D0;
}

.card {
border: none;
border-radius: 28px;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(2px);
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease;
}

.card:hover {
transform: translateY(-4px);
}

.metric-value {
font-size: 2.6rem;
font-weight: 700;
background: linear-gradient(120deg, #2c5f2d, #6b8c5c);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
line-height: 1.2;
}

.metric-label {
font-size: 0.85rem;
font-weight: 500;
color: #5b6e5a;
letter-spacing: 0.5px;
}

.range-badge {
font-size: 0.75rem;
background: #eef4ea;
border-radius: 40px;
padding: 4px 12px;
color: #3a5e3a;
}

.notification-box {
background: #fef7e8;
border-left: 5px solid #d4b48c;
border-radius: 20px;
font-size: 0.85rem;
padding: 12px 18px;
color: #4d5d4a;
}

.notif-text {
    font-size: 11px;
    margin-top: 5px;
    color: #333;
    text-align: left;
}

.header-gradient {
background: rgba(255, 248, 235, 0.85);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(140, 110, 80, 0.2);
}

footer {
background: rgba(235, 225, 210, 0.8);
backdrop-filter: blur(8px);
border-radius: 40px 40px 20px 20px;
font-size: 0.85rem;
}

marquee {
background: #2c4b32b3;
color: #fef6e3;
padding: 8px;
border-radius: 60px;
font-weight: 500;
}

.table-responsive-custom {
border-radius: 24px;
overflow-x: auto;
}

table.dataTable {
border-collapse: collapse;
background: transparent;
}

table.dataTable thead th {
background-color: #e6dbcd70;
color: #2e4a2b;
font-weight: 600;
}

.btn-soft {
background: #dbe9d4;
color: #3c6e3c;
border-radius: 50px;
padding: 6px 18px;
font-weight: 500;
}

.chart-container {
height: 220px;
width: 100%;
position: relative;
}

@media (max-width: 768px) {
.metric-value {
font-size: 1.8rem;
}

.card-body {
padding: 1rem;
}

.chart-container {
height: 190px;
}
}

.gradient-text {
background: linear-gradient(135deg, #2e5c2a, #c09a6b);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 700;
}

.chart-card {
transition: all 0.2s;
}