/* Layout leunt op theme-styling; alleen wat spacing en grid */

/* Info-box volgt het theme, geen eigen achtergrond/kleur */
.n1mm-info-box {
    margin: 1rem 0;
}

.n1mm-info-box table {
    width: 100%;
    border-collapse: collapse;
}

.n1mm-info-box td {
    padding: 0.15rem 0;
}

.n1mm-info-box td:first-child {
    opacity: 0.7;              /* label iets subtieler */
    padding-right: 0.75rem;
}

/* Band "icoontjes" in een responsive grid */
.n1mm-bands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* Gebruik currentColor zodat kleuren uit het theme komen */
.n1mm-bands .band {
    text-align: center;
    padding: 0.35rem 0.5rem;
    border-radius: 9999px;      /* pill shape */
    border: 1px solid currentColor;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Actieve band iets prominenter */
.n1mm-bands .band.active {
    font-weight: 600;
    box-shadow: 0 0 0 2px currentColor;
}
