/* Custom CSS for HBS Portal - Grünes Firmendesign */

:root {
    --hbs-green: #198754;
    --hbs-green-dark: #146c43;
    --hbs-green-light: #20c997;
    --primary-color: var(--hbs-green);
    --secondary-color: #6c757d;
    --success-color: var(--hbs-green);
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/* Bootstrap Primary Color Override - HBS Grün */
.btn-primary {
    background-color: var(--hbs-green) !important;
    border-color: var(--hbs-green) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--hbs-green-dark) !important;
    border-color: var(--hbs-green-dark) !important;
}

.btn-outline-primary {
    color: var(--hbs-green) !important;
    border-color: var(--hbs-green) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--hbs-green) !important;
    border-color: var(--hbs-green) !important;
    color: white !important;
}

.bg-primary {
    background-color: var(--hbs-green) !important;
}

.text-primary {
    color: var(--hbs-green) !important;
}

.border-primary {
    border-color: var(--hbs-green) !important;
}

.badge.bg-primary {
    background-color: var(--hbs-green) !important;
}

.navbar-dark.bg-primary {
    background-color: var(--hbs-green) !important;
}

.card-header.bg-primary {
    background-color: var(--hbs-green) !important;
    border-bottom: 1px solid var(--hbs-green-dark);
}

/* Links in Primary Color */
a.text-primary {
    color: var(--hbs-green) !important;
}

a.text-primary:hover {
    color: var(--hbs-green-dark) !important;
}

/* Mini Map Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.mini-map-container {
    transition: all 0.3s ease;
}

.mini-map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.15);
}

/* Body and Layout */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Cards */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Buttons - Additional Styling */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
}

/* Tables */
.table th {
    background-color: var(--light-color);
    border-bottom: 2px solid var(--hbs-green);
    font-weight: 600;
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

/* Fluent Design - Dashboard */
.fluent-dashboard {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, 
            rgba(25, 135, 84, 0.03) 0%, 
            rgba(20, 108, 67, 0.05) 25%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(25, 135, 84, 0.03) 75%,
            rgba(20, 108, 67, 0.05) 100%
        ),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 C200,200 400,150 600,200 C800,250 1000,180 1200,220 L1200,600 L0,600 Z" fill="rgba(25,135,84,0.02)"/><path d="M0,400 C200,320 400,280 600,320 C800,360 1000,300 1200,340 L1200,600 L0,600 Z" fill="rgba(25,135,84,0.03)"/><path d="M0,480 C200,420 400,390 600,420 C800,450 1000,400 1200,430 L1200,600 L0,600 Z" fill="rgba(25,135,84,0.04)"/></svg>');
    background-attachment: fixed;
    background-size: 100% 100%, cover, 100% auto;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.fluent-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(25, 135, 84, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 108, 67, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(25, 135, 84, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.fluent-dashboard > * {
    position: relative;
    z-index: 1;
}

/* Fluent Cards */
.fluent-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fluent-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.fluent-welcome-card {
    background: rgba(25, 135, 84, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(25, 135, 84, 0.3);
    box-shadow: 
        0 8px 32px rgba(25, 135, 84, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
}

/* Modern Grid Cards - Perfect Alignment */
.modern-grid-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(25, 135, 84, 0.08), 0 1px 3px rgba(25, 135, 84, 0.1);
}

.modern-grid-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 135, 84, 0.12), 0 2px 6px rgba(25, 135, 84, 0.15);
}

.modern-grid-header {
    background: linear-gradient(135deg, #198754 0%, #1abc9c 100%) !important;
    color: #ffffff !important;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    height: 60px;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-header * {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-header i {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-header span {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.modern-grid-content {
    flex: 1;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 260px;
    align-items: stretch;
    justify-items: stretch;
}

/* Action Grid Items - Visible Colors & Perfect Grid */
.modern-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 140px;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.modern-grid-item.primary {
    background: linear-gradient(135deg, #198754 0%, #16a085 100%) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
}

.modern-grid-item.primary *,
.modern-grid-item.primary .modern-grid-icon,
.modern-grid-item.primary .modern-grid-text {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-item.secondary {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(73, 80, 87, 0.2);
}

.modern-grid-item.secondary *,
.modern-grid-item.secondary .modern-grid-icon,
.modern-grid-item.secondary .modern-grid-text {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-item.success {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.2);
}

.modern-grid-item.success *,
.modern-grid-item.success .modern-grid-icon,
.modern-grid-item.success .modern-grid-text {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-item.info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.2);
}

.modern-grid-item.info *,
.modern-grid-item.info .modern-grid-icon,
.modern-grid-item.info .modern-grid-text {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-grid-item:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
    color: #ffffff !important;
}

.modern-grid-item:hover *,
.modern-grid-item:hover .modern-grid-icon,
.modern-grid-item:hover .modern-grid-text {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.modern-grid-item.primary:hover {
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
}

.modern-grid-item.secondary:hover,
.modern-grid-item.success:hover,
.modern-grid-item.info:hover {
    color: white;
}

.modern-grid-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 1;
    display: block;
    line-height: 1;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.modern-grid-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    opacity: 1;
    max-width: 95%;
    display: block;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Statistics Grid Items - Enhanced Design */
.modern-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 140px;
    width: 100%;
    border: 2px solid rgba(25, 135, 84, 0.1);
    box-sizing: border-box;
    padding: 15px;
}

.modern-stat-item:hover {
    transform: translateY(-2px) scale(1.01);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(25, 135, 84, 0.2);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.15);
}

/* Statistics Number */
.modern-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hbs-primary);
    margin-bottom: 6px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1;
    display: block;
}

/* Label with Icon beside text */
.modern-stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    line-height: 1.2;
}

.modern-stat-label i {
    font-size: 16px;
    min-width: 20px;
    transition: all 0.3s ease;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.stat-text small {
    font-size: 0.7rem;
    font-weight: 400;
    color: #6c757d;
    opacity: 0.8;
}

/* Category-specific icon colors */
.modern-stat-item.total i {
    color: #6c757d;
}

.modern-stat-item.active i {
    color: var(--hbs-primary);
}

.modern-stat-item.mine i {
    color: #fd7e14;
}

.modern-stat-item.users i {
    color: #0dcaf0;
}

/* Hover effects for icons */
.modern-stat-item:hover i {
    transform: scale(1.1);
}

/* Ausschreibungen Grid Layout */
.ausschreibungen-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.ausschreibungen-grid::-webkit-scrollbar {
    width: 6px;
}

.ausschreibungen-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}

.ausschreibungen-grid::-webkit-scrollbar-thumb {
    background: rgba(25, 135, 84, 0.3);
    border-radius: 3px;
}

.ausschreibungen-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(25, 135, 84, 0.5);
}

/* Einzelne Ausschreibung Card */
.ausschreibung-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 135, 84, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ausschreibung-card:hover {
    transform: translateY(-2px);
    border-color: rgba(25, 135, 84, 0.2);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.1);
    background: rgba(255, 255, 255, 1);
}

/* Ausschreibung Header */
.ausschreibung-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.ausschreibung-title {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    margin-right: 12px;
}

.ausschreibung-title i {
    color: var(--hbs-primary);
    font-size: 0.85rem;
}

/* Details Section */
.ausschreibung-details {
    margin-bottom: 12px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #5a6c7d;
}

.detail-row i {
    width: 14px;
    margin-right: 8px;
    margin-top: 2px;
    opacity: 0.7;
    flex-shrink: 0;
}

.detail-row span {
    line-height: 1.4;
}

/* Actions Section */
.ausschreibung-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ausschreibung-actions .btn {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

/* Status Badges */
.badge.status-aktiv {
    background: linear-gradient(135deg, var(--hbs-primary), #20c997);
    color: white;
}

.badge.status-inaktiv {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.badge.status-abgeschlossen {
    background: linear-gradient(135deg, #17a2b8, #0dcaf0);
    color: white;
}

/* Mini Leaflet Map */
.mini-leaflet-map {
    height: 320px;
    width: 100%;
    border-radius: 16px;
    border: 2px solid rgba(25, 135, 84, 0.15);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.1);
    overflow: hidden;
}

.map-click-overlay-simple {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 50px;
    z-index: 500;
    cursor: pointer;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 14px;
}

.map-click-overlay-simple:hover {
    background: rgba(25, 135, 84, 0.05);
    text-decoration: none;
}

/* Mini Map Controls Container */
.mini-map-controls {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.mini-map-info-center {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid rgba(25, 135, 84, 0.15);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.12);
    pointer-events: none;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mini-map-fullview {
    pointer-events: auto;
}

.mini-map-fullview .btn {
    font-size: 0.9rem;
    padding: 12px 18px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.96) !important;
    border: 2px solid rgba(25, 135, 84, 0.4) !important;
    color: var(--hbs-primary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.12);
    min-width: 140px;
    text-decoration: none;
}

.mini-map-fullview .btn:hover {
    background: var(--hbs-primary) !important;
    border-color: var(--hbs-primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.3);
}

/* Spezifischer Selektor für bessere Priorität */
.mini-map-fullview a.btn:hover,
.mini-map-fullview a.btn:focus {
    background: #198754 !important;
    border-color: #198754 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.mini-map-fullview a.btn:hover i,
.mini-map-fullview a.btn:focus i {
    color: #ffffff !important;
}

.marker-legend {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc3545;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Leaflet Override für Mini Map */
.mini-leaflet-map .leaflet-control-container {
    display: none !important;
}

.mini-leaflet-map .leaflet-popup {
    display: none !important;
}

.fluent-action-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.fluent-action-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Dashboard Cards - Legacy Support */
.dashboard-card {
    background: rgba(25, 135, 84, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(25, 135, 84, 0.3);
    box-shadow: 0 8px 32px rgba(25, 135, 84, 0.2);
    color: white;
    border-radius: 20px;
}

.dashboard-card .card-body {
    padding: 2rem;
}

.dashboard-stat {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Map Styling */
.map-container {
    height: 600px;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#map {
    height: 100%;
    width: 100%;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Badges */
.badge {
    font-size: 0.75em;
}

/* Like Button */
.like-btn {
    border: none;
    background: transparent;
    color: #dc3545;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.like-btn:hover {
    transform: scale(1.1);
}

.like-btn.liked {
    color: #dc3545;
}

.like-btn.not-liked {
    color: #6c757d;
}

/* Status Badges */
.status-in-planung { background-color: #ffc107; }
.status-zu-gross { background-color: #dc3545; }
.status-teilprojekt { background-color: #0dcaf0; }
.status-aktiv { background-color: #198754; }
.status-abgelaufen { background-color: #6c757d; }

/* Highscore */
.highscore-item {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #212529;
}

.highscore-item.second {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}

.highscore-item.third {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-stat {
        font-size: 2rem;
    }
    
    .map-container {
        height: 400px;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: none;
}

.loading .loading-spinner {
    display: inline-block;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Filter Panel */
.filter-panel {
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Statistics Cards */
.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.5rem;
    color: white;
    margin-bottom: 1rem;
}

.stat-card.primary { background: linear-gradient(135deg, var(--primary-color), #0056b3); }
.stat-card.success { background: linear-gradient(135deg, var(--success-color), #146c43); }
.stat-card.warning { background: linear-gradient(135deg, var(--warning-color), #e6a700); }
.stat-card.info { background: linear-gradient(135deg, var(--info-color), #0aa2c0); }