/* Personal Dashboard Styles */

.pd-hero {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.pd-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary, #6366f1);
}

.pd-avatar-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary, #6366f1);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary, #6366f1);
}

.pd-stat-badge {
    background: var(--bg-subtle, #f3f4f6);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    text-align: center;
    min-width: 90px;
}

.pd-stat-badge strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary, #111);
}

.pd-stat-badge small {
    font-size: 0.72rem;
    color: var(--text-muted, #6b7280);
}

.pd-quick-card {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary, #111);
    transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
    height: 100%;
}

.pd-quick-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    border-color: var(--primary, #6366f1);
    transform: translateY(-2px);
    color: var(--text-primary, #111);
}

.pd-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pd-section-card {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.pd-section-header {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-light, #e5e7eb);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-primary, #111);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pd-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-subtle, #f3f4f6);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 20px;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary, #111);
}

.pd-mp-stat {
    text-align: center;
}

.pd-mp-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary, #6366f1);
}

.pd-mp-stat small {
    font-size: 0.72rem;
    color: var(--text-muted, #6b7280);
}

.pd-profession {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pd-set-year {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.pd-quick-title {
    font-weight: 700;
    font-size: 0.88rem;
}

.pd-quick-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pd-streak-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f97316;
    line-height: 1;
}

.pd-streak-days {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.pd-streak-multiplier {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    border-radius: 12px;
    padding: 6px 14px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pd-streak-milestone {
    font-size: 0.85rem;
    color: #f97316;
    font-weight: 600;
}

.pd-streak-best {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pd-badge-link {
    font-size: 0.78rem;
    color: var(--primary);
    text-decoration: none;
    align-self: center;
}

.pd-empty-state {
    color: var(--text-muted);
}

.pd-empty-icon {
    color: #d1d5db;
}
