.dashboard-card {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.dashboard-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.budget-line-card {
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.budget-line-card .card-header {
    background: linear-gradient(to right, rgba(67, 97, 238, 0.05), white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.progress-container {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar-allocated {
    background-color: var(--bs-info);
}

.progress-bar-committed {
    background-color: var(--bs-danger);
}

.progress-bar-disbursed {
    background-color: var(--bs-success);
}

.legend-item {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 5px;
}

.total-card {
    background: var(--bs-blue);
    color: white;
    border-radius: 16px;
    overflow: hidden;
}

.chart-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.budget-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.no-data-placeholder {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
}
