/* Dashboard Activity Center Enhancement */
.dashboard-stat-card {
    border-radius: 16px;
    padding: 20px;
    background: var(--box-bg);
    border: 1px solid var(--box-border);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.dashboard-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.stat-info .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.stat-info .stat-label {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Color accents */
.stat-primary .stat-icon { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.stat-success .stat-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.stat-warning .stat-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.stat-danger .stat-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* Timeline UI */
.activity-center-title {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--modern-primary), var(--modern-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.theme-modern .titolo_box {
    font-weight: 700;
    color: var(--modern-primary);
}

.dashboard-quick-actions {
    margin-bottom: 30px;
}

.action-btn {
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Goal Progress Bar */
.goal-progress-wrapper {
    margin-top: 10px;
}

.progress {
    height: 12px !important;
    border-radius: 10px !important;
    background-color: var(--snow-bg) !important;
}

.progress-bar {
    border-radius: 10px !important;
}

/* Activity Feed */
.activity-feed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--snow-bg);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-badge {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: var(--snow-bg);
    color: var(--modern-primary);
}

.activity-details p {
    margin: 0;
    font-size: 0.9rem;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--muted-text);
}

/* Dormant alert */
.dormant-alert-box {
    background: #fff5f5;
    border-left: 4px solid #f56565;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

body[data-theme="dark"] .dormant-alert-box {
    background: #442727;
    border-color: #f56565;
}
