/* ============================================
   DASHBOARD - STYLES
   ============================================ */

.dashboard-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.stat-icon.blue { background: #1a3b8a; }
.stat-icon.green { background: #28a745; }
.stat-icon.yellow { background: #ffc107; }
.stat-icon.red { background: #dc3545; }

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #061248;
    line-height: 1.2;
}

.stat-label {
    color: #6c757d;
    font-size: 0.8rem;
}

.stat-change {
    font-size: 0.7rem;
    font-weight: 600;
}

.stat-change.up { color: #28a745; }
.stat-change.down { color: #dc3545; }

/* Timeline */
.timeline {
    padding: 1rem 1.5rem;
}

.timeline-item {
    position: relative;
    padding: 0 0 1.5rem 2rem;
    border-left: 2px solid #e9ecef;
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -10px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
}

.timeline-badge.primary { background: #1a3b8a; }
.timeline-badge.success { background: #28a745; }
.timeline-badge.warning { background: #ffc107; }
.timeline-badge.danger { background: #dc3545; }
.timeline-badge.info { background: #17a2b8; }

/* Notifications */
.notification-item {
    transition: all 0.3s ease;
}

.notification-item.unread {
    background: #f0f7ff;
}

.notification-item.unread:hover {
    background: #e8f0fe;
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.notification-icon.primary { background: #1a3b8a; }
.notification-icon.success { background: #28a745; }
.notification-icon.warning { background: #ffc107; }
.notification-icon.danger { background: #dc3545; }
.notification-icon.info { background: #17a2b8; }

/* Wishlist Preview */
.wishlist-preview-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.wishlist-preview-item:hover {
    background: #f0f7ff;
}

/* Responsive */
@media (max-width: 576px) {
    .stat-card {
        padding: 0.8rem 1rem;
    }
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .timeline {
        padding: 0.5rem 1rem;
    }
    .timeline-item {
        padding-left: 1.5rem;
    }
}