/* public/app/css/activity-dash-panels.css
 * Synopsis: Module activity-dash-panels.
 * Objectif: Rôle de public/app/css/activity-dash-panels.css.
 */

.ad-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ad-panel {
    border: 1px solid var(--line, #ddd);
    padding: 1rem;
    background: var(--surface, #fff);
}

.ad-panel h2 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.ad-panel__note {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    color: var(--muted, #666);
    line-height: 1.35;
}

.ad-bars {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ad-bars li {
    display: grid;
    grid-template-columns: 6.5rem 1fr 2rem;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.ad-bars__tip {
    display: block !important;
    grid-template-columns: none !important;
    margin: -0.15rem 0 0.55rem;
    font-size: 0.75rem;
    color: var(--muted, #666);
    line-height: 1.3;
}

.ad-bars__track {
    height: 0.45rem;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.ad-bars__track > span {
    display: block;
    height: 100%;
    background: var(--cta, #222);
}

.ad-funnel {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.6;
}

.ad-note {
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 3px solid var(--cta, #222);
    background: var(--surface, #f7f7f7);
    max-width: 40rem;
}
