.wrapper {
    zoom: 0.8;
}

.main-sidebar {
    min-height: calc(100vh / 0.8);
    transform-origin: left top;
}

.sidebar {
    height: 100% !important;
}

.content-wrapper {
    min-height: calc(100vh / 0.9) !important;
}

/* Compact Metric Card Styles */
.metric-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    margin-bottom: 15px;
    color: white;
    height: 100%;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.metric-trend {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 12px;
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
}

.positive {
    color: #d4edda;
}

.negative {
    color: #f8d7da;
}

.neutral {
    color: #fff3cd;
}

/* More subtle gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #36b9cc 0%, #258391 100%) !important;
}