/**
 * Dashboard — tuiles fonctionnalités uniquement.
 * Coque : fs-config-shell.css (.fs-hub-page)
 */

.dashboard-zoom-wrapper {
    zoom: 0.75;
}

.feature-card {
    transition: all 0.3s ease;
    width: 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card .text-center {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card .btn-primary {
    margin-top: auto;
}

.tile-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin: 0 auto 1.25rem;
    padding: 0;
    list-style: none;
    max-width: 100%;
}

.tile-perk {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.72rem;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tile-perk::before {
    content: '';
    width: 5px;
    height: 5px;
    margin-right: 0.45rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.45);
}

.tile-perk--included::before {
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.45);
}

.logo {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bandeau statut token — pleine largeur (pas feature-card 300px) */
.dash-status-panel.card {
    padding: 1.4rem;
    width: 100%;
    max-width: none;
    min-height: 0;
    box-shadow: none;
}

.dash-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.dash-status-badge--loading {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #9ca3af;
}

.dash-status-badge--ok {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.35);
    color: #6ee7b7;
}

.dash-status-badge--err {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}

.dash-status-meta {
    display: grid;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.dash-status-meta strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.dash-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

.dash-status-actions .btn-primary,
.dash-status-actions .btn-secondary {
    width: auto;
    padding: 0.65rem 1.1rem;
}
