/* Layout leans on the active theme; only minimal layout helpers here */

/* Container */
.n1mm-wrapper {
    margin: 1rem 0;
}

/* Title uses theme styling, but a bit tighter */
.n1mm-title {
    margin-bottom: 0.5rem;
}

/* Info-box uses table layout */
.n1mm-info-box {
    margin: 0.5rem 0 1rem 0;
}

.n1mm-info-box table {
    width: 100%;
    border-collapse: collapse;
}

.n1mm-info-box td {
    padding: 0.15rem 0;
}

/* Bands grid – use simple responsive grid that respects theme colors */
.n1mm-bands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 0.35rem;
    margin: 0.5rem 0 0.75rem 0;
}

.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;
}

/* Active band pops a bit more but keeps theme colors */
.n1mm-bands .band.active {
    font-weight: 600;
    box-shadow: 0 0 0 2px currentColor;
}

/* Status line */
.n1mm-status {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}
