/* =====================================================================
   WP Station Web Dashboard - merged styles
   Section 1: N1MM card (.n1mm-*)   Section 2: MiniBook card (.minibook-*)
   Each card template only uses its own prefixed classes, so the two
   rule sets never interfere.
   ===================================================================== */

/* ============================= N1MM CARD ============================= */
/* ==========================================================
   N1MM Dashboard Styles
   ----------------------------------------------------------
   These styles are a 1:1 port of the standalone HTML-embed
   card (HTML_EMBED/server/embed.js) so the WordPress cards
   render identically. DOM structure matches embed.js:
     .n1mm-card > .n1mm-title / .n1mm-status / .n1mm-rows
                  (.n1mm-row > .n1mm-label + .n1mm-value) / .n1mm-footer
   ========================================================== */

/* Line-break helper for horizontal-medium; hidden in every other style. */
.n1mm-row-break { display: none; }

.n1mm-card {
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 3px 8px rgba(0, 0, 0, 0.15);
    padding: 14px;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    font-family: ui-monospace, "Cascadia Code", "Cascadia Mono", "Consolas",
                 "DejaVu Sans Mono", "Liberation Mono", "Courier New", monospace;
    color: #000;
    line-height: 1.35;
}

.n1mm-card * {
    box-sizing: border-box;
}

.n1mm-card .n1mm-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.n1mm-card .n1mm-status {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.n1mm-card.n1mm-onair .n1mm-status {
    color: #ff2b2b;
    text-shadow: 0 0 6px rgba(255, 43, 43, 0.9), 0 0 14px rgba(255, 43, 43, 0.6);
}

.n1mm-card.n1mm-offair .n1mm-status {
    color: #666;
}

.n1mm-card .n1mm-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin: 4px 0;
}

.n1mm-card .n1mm-label {
    color: #666;
    font-weight: 600;
    margin-right: 10px;
    white-space: nowrap;
}

.n1mm-card .n1mm-value {
    color: #000;
    font-weight: 500;
    text-align: right;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.n1mm-card .n1mm-footer {
    margin-top: 10px;
    text-align: center;
    font-size: 0.7rem;
    color: #999;
    opacity: 0.85;
}

.n1mm-card .n1mm-foot-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    margin-right: 2px;
}

/* ---- THEME: DARK (works on every layout) ---- */
.n1mm-theme-dark.n1mm-card {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.15);
    color: #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 3px 10px rgba(0, 0, 0, 0.4);
}
.n1mm-theme-dark .n1mm-title { color: #fff; }
.n1mm-theme-dark .n1mm-label { color: #9aa0a6; }
.n1mm-theme-dark .n1mm-value { color: #fff; }
.n1mm-theme-dark .n1mm-footer { color: #9a9a9a; }
.n1mm-theme-dark.n1mm-offair .n1mm-status { color: #888; }

/* text layout stays frameless/transparent even in dark */
.n1mm-theme-dark.n1mm-style-text.n1mm-card,
.n1mm-theme-dark.n1mm-style-text-compact.n1mm-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* tiled layouts get light-on-dark tiles */
.n1mm-theme-dark.n1mm-style-cards .n1mm-row,
.n1mm-theme-dark.n1mm-style-horizontal .n1mm-row,
.n1mm-theme-dark.n1mm-style-horizontal-medium .n1mm-row,
.n1mm-theme-dark.n1mm-style-horizontal-compact .n1mm-row {
    background: rgba(255, 255, 255, 0.09);
}

/* ---- COMPACT ---- */
.n1mm-style-compact.n1mm-card { width: 220px; padding: 9px 11px; }
.n1mm-style-compact .n1mm-title { font-size: 1rem; margin-bottom: 6px; }
.n1mm-style-compact .n1mm-status { font-size: 0.95rem; margin-bottom: 7px; }
.n1mm-style-compact .n1mm-row { font-size: 0.8rem; margin: 2px 0; }
.n1mm-style-compact .n1mm-footer { font-size: 0.6rem; margin-top: 7px; }

/* ---- TEXT (no frame) ---- */
.n1mm-style-text.n1mm-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    max-width: none;
}
.n1mm-style-text .n1mm-title { text-align: left; }
.n1mm-style-text .n1mm-status { text-align: left; }
.n1mm-style-text .n1mm-value { text-align: left; }

/* ---- CARDS (each field a tile) ---- */
.n1mm-style-cards.n1mm-card { width: 330px; }
.n1mm-style-cards .n1mm-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.n1mm-style-cards .n1mm-row {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.045);
    border-radius: 8px;
    padding: 7px 9px;
    margin: 0;
}
.n1mm-style-cards .n1mm-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 2px 0;
}
.n1mm-style-cards .n1mm-value {
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    width: 100%;
}

/* ---- HORIZONTAL (everything on one line) ---- */
.n1mm-style-horizontal.n1mm-card {
    width: auto;
    max-width: none;
    display: inline-grid;
    grid-template-columns: auto auto 20ch;
    align-items: center;
    gap: 1px 18px;
    padding: 10px 16px;
    vertical-align: top;
    margin: 0;
}
.n1mm-style-horizontal .n1mm-title {
    grid-column: 1; grid-row: 1 / span 2; align-self: center;
    margin: 0; white-space: nowrap; font-size: 1.1rem; text-align: left;
}
.n1mm-style-horizontal .n1mm-rows {
    grid-column: 2; grid-row: 1 / span 2; align-self: center;
    display: flex; flex-wrap: nowrap; align-items: stretch; gap: 8px;
}
.n1mm-style-horizontal .n1mm-status {
    grid-column: 3; grid-row: 1; justify-self: end; margin: 0;
    white-space: nowrap; font-size: 1.05rem; text-align: right;
}
.n1mm-style-horizontal .n1mm-footer {
    grid-column: 3; grid-row: 2; justify-self: end; margin: 0;
    white-space: nowrap; font-size: 0.7rem; text-align: right;
}
.n1mm-style-horizontal .n1mm-row {
    margin: 0; display: flex; flex-direction: column; align-items: flex-start;
    gap: 2px; white-space: nowrap; flex: none; justify-content: center;
    background: rgba(0, 0, 0, 0.05); border-radius: 8px; padding: 6px 10px;
}
.n1mm-style-horizontal .n1mm-label {
    margin: 0; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.n1mm-style-horizontal .n1mm-value {
    text-align: left; flex: none; font-size: 0.95rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Fixed per-field value widths (monospace ch), sized for the widest realistic values */
.n1mm-style-horizontal .n1mm-field-freq      .n1mm-value { width: 14ch; }
.n1mm-style-horizontal .n1mm-field-band      .n1mm-value { width: 6ch; }
.n1mm-style-horizontal .n1mm-field-mode      .n1mm-value { width: 8ch; }
.n1mm-style-horizontal .n1mm-field-op_status .n1mm-value { width: 13ch; }
.n1mm-style-horizontal .n1mm-field-mycall    .n1mm-value { width: 13ch; }
.n1mm-style-horizontal .n1mm-field-opcall    .n1mm-value { width: 13ch; }
.n1mm-style-horizontal .n1mm-field-radio     .n1mm-value { width: 16ch; }
.n1mm-style-horizontal .n1mm-field-locator   .n1mm-value { width: 8ch; }
.n1mm-style-horizontal .n1mm-field-location  .n1mm-value { width: 16ch; }
.n1mm-style-horizontal .n1mm-foot-br,
.n1mm-style-horizontal .n1mm-foot-brand { display: none; }

/* ==========================================================
   WordPress-only extra styles (not present in the HTML embed)
   ========================================================== */

/* ---- HORIZONTAL COMPACT (narrower single row, smaller text) ---- */
.n1mm-style-horizontal-compact.n1mm-card {
    width: auto;
    max-width: 100%;
    display: inline-grid;
    grid-template-columns: auto auto 20ch;
    align-items: center;
    gap: 1px 10px;
    padding: 6px 10px;
    vertical-align: top;
    margin: 0;
}
.n1mm-style-horizontal-compact .n1mm-title {
    grid-column: 1; grid-row: 1 / span 2; align-self: center;
    margin: 0; white-space: nowrap; font-size: 0.9rem; text-align: left;
}
.n1mm-style-horizontal-compact .n1mm-rows {
    grid-column: 2; grid-row: 1 / span 2; align-self: center;
    display: flex; flex-wrap: nowrap; align-items: stretch; gap: 5px;
}
.n1mm-style-horizontal-compact .n1mm-status {
    grid-column: 3; grid-row: 1; justify-self: end; margin: 0;
    white-space: nowrap; font-size: 0.85rem; text-align: right;
}
.n1mm-style-horizontal-compact .n1mm-footer {
    grid-column: 3; grid-row: 2; justify-self: end; margin: 0;
    white-space: nowrap; font-size: 0.6rem; text-align: right;
}
.n1mm-style-horizontal-compact .n1mm-row {
    margin: 0; display: flex; flex-direction: column; align-items: flex-start;
    gap: 1px; white-space: nowrap; flex: none; justify-content: center;
    background: rgba(0, 0, 0, 0.05); border-radius: 6px; padding: 3px 6px;
}
.n1mm-style-horizontal-compact .n1mm-label {
    margin: 0; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.n1mm-style-horizontal-compact .n1mm-value {
    text-align: left; flex: none; font-size: 0.72rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.n1mm-style-horizontal-compact .n1mm-field-freq      .n1mm-value { width: 14ch; }
.n1mm-style-horizontal-compact .n1mm-field-band      .n1mm-value { width: 6ch; }
.n1mm-style-horizontal-compact .n1mm-field-mode      .n1mm-value { width: 8ch; }
.n1mm-style-horizontal-compact .n1mm-field-op_status .n1mm-value { width: 13ch; }
.n1mm-style-horizontal-compact .n1mm-field-mycall    .n1mm-value { width: 13ch; }
.n1mm-style-horizontal-compact .n1mm-field-opcall    .n1mm-value { width: 13ch; }
.n1mm-style-horizontal-compact .n1mm-field-radio     .n1mm-value { width: 16ch; }
.n1mm-style-horizontal-compact .n1mm-field-locator   .n1mm-value { width: 8ch; }
.n1mm-style-horizontal-compact .n1mm-field-location  .n1mm-value { width: 16ch; }
.n1mm-style-horizontal-compact .n1mm-foot-br,
.n1mm-style-horizontal-compact .n1mm-foot-brand { display: none; }

/* ---- HORIZONTAL MEDIUM (same tiles as horizontal, but over 2 rows) ---- */
.n1mm-style-horizontal-medium.n1mm-card {
    width: auto;
    max-width: 100%;
    display: inline-grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 1px 8px;
    padding: 10px 16px;
    vertical-align: top;
    margin: 0;
}
.n1mm-style-horizontal-medium .n1mm-title {
    grid-column: 1; grid-row: 1 / span 2; align-self: center;
    margin: 0; white-space: nowrap; font-size: 1.1rem; text-align: left;
}
/* Per-field tiles (like horizontal) forced onto 2 rows via the row-break, inside
   a FIXED-width tile area so the n1mm and MiniBook cards are always the same
   overall size regardless of their differing field sets/widths. */
.n1mm-style-horizontal-medium .n1mm-rows {
    grid-column: 2; grid-row: 1 / span 2; align-self: center;
    display: flex; flex-wrap: wrap; align-items: stretch; gap: 3px 8px;
    width: 540px; max-width: 100%;
}
.n1mm-style-horizontal-medium .n1mm-row-break {
    display: block; flex-basis: 100%; width: 100%; height: 0; margin: 0; padding: 0;
}
/* Swap vs. horizontal: timestamp on the top row, ON AIR on the bottom row,
   both vertically centred so they line up with the two tile rows. */
.n1mm-style-horizontal-medium .n1mm-footer {
    grid-column: 3; grid-row: 1; justify-self: end; align-self: center; margin: 0;
    white-space: nowrap; font-size: 0.7rem; text-align: right;
}
.n1mm-style-horizontal-medium .n1mm-status {
    grid-column: 3; grid-row: 2; justify-self: end; align-self: center; margin: 0;
    white-space: nowrap; font-size: 1.05rem; text-align: right;
}
.n1mm-style-horizontal-medium .n1mm-row {
    margin: 0; display: flex; flex-direction: column; align-items: flex-start;
    gap: 2px; white-space: nowrap; flex: none; justify-content: center;
    background: rgba(0, 0, 0, 0.05); border-radius: 8px; padding: 6px 10px;
}
.n1mm-style-horizontal-medium .n1mm-label {
    margin: 0; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.n1mm-style-horizontal-medium .n1mm-value {
    text-align: left; flex: none; font-size: 0.95rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Per-field value widths; radio & location are wider. */
.n1mm-style-horizontal-medium .n1mm-field-mycall    .n1mm-value { width: 10ch; }
.n1mm-style-horizontal-medium .n1mm-field-opcall    .n1mm-value { width: 10ch; }
.n1mm-style-horizontal-medium .n1mm-field-freq      .n1mm-value { width: 12ch; }
.n1mm-style-horizontal-medium .n1mm-field-band      .n1mm-value { width: 6ch; }
.n1mm-style-horizontal-medium .n1mm-field-mode      .n1mm-value { width: 7ch; }
.n1mm-style-horizontal-medium .n1mm-field-radio     .n1mm-value { width: 15ch; }
.n1mm-style-horizontal-medium .n1mm-field-op_status .n1mm-value { width: 11ch; }
.n1mm-style-horizontal-medium .n1mm-field-locator   .n1mm-value { width: 8ch; }
.n1mm-style-horizontal-medium .n1mm-field-location  .n1mm-value { width: 15ch; }
.n1mm-style-horizontal-medium .n1mm-foot-br,
.n1mm-style-horizontal-medium .n1mm-foot-brand { display: none; }

/* ---- TEXT COMPACT (frameless, smaller) ---- */
.n1mm-style-text-compact.n1mm-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    max-width: none;
}
.n1mm-style-text-compact .n1mm-title { text-align: left; font-size: 0.9rem; }
.n1mm-style-text-compact .n1mm-status { text-align: left; font-size: 0.9rem; margin-bottom: 6px; }
.n1mm-style-text-compact .n1mm-row { font-size: 0.7rem; margin: 1px 0; }
.n1mm-style-text-compact .n1mm-value { text-align: left; }
.n1mm-style-text-compact .n1mm-footer { text-align: left; font-size: 0.6rem; }

/* ---- CARD-TEXT (card frame, left-aligned values) ---- */
.n1mm-style-card-text .n1mm-value { text-align: left; }

/* ---- CARD-TEXT COMPACT (compact card frame, left-aligned values) ---- */
.n1mm-style-card-text-compact.n1mm-card { width: 220px; padding: 9px 11px; }
.n1mm-style-card-text-compact .n1mm-status { font-size: 0.95rem; margin-bottom: 7px; }
.n1mm-style-card-text-compact .n1mm-row { font-size: 0.8rem; margin: 2px 0; }
.n1mm-style-card-text-compact .n1mm-value { text-align: left; }
.n1mm-style-card-text-compact .n1mm-footer { font-size: 0.6rem; margin-top: 7px; }

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

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

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

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

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

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

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

.minibook-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 */
.minibook-bands .band.active {
    font-weight: 600;
    box-shadow: 0 0 0 2px currentColor;
}

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


/* Center LIVE / OFFAIR status text */
.minibook-status {
	text-align: center;
}


/* LIVE → rood glow */
.minibook-status.is-live {
    color: #ff2b2b;
    text-shadow:
        0 0 6px rgba(255, 43, 43, 0.9),
        0 0 14px rgba(255, 43, 43, 0.7);
    font-weight: 700;
}

/* OFFAIR → default (geen glow) */
.minibook-status.is-offair {
	text-shadow: none;
    font-weight: inherit;
}

/* FORCE bigger LIVE / OFFAIR */
.minibook-wrapper .minibook-status.is-live,
.minibook-wrapper .minibook-status.is-offair {
    font-size: 1rem !important;
    font-weight: 800;
}

/* ==========================================================
   Style variants (controlled via shortcode style="...")
   - default   		: 	current behaviour (no extra layout rules)
   - horizontal		: 	info + bands side-by-side on wider screens
   - compact   		: 	tighter spacing
   - cards     		: 	subtle card-like container
   - dark      		:	darker box, still readable
   - text      		: 	text only no band icons
   - text-compact	:	text only small no band icons
   ========================================================== */

/* Horizontal layout: make title, info, bands, status into a grid */
.minibook-wrapper.minibook-style-horizontal {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    grid-template-areas:
        "title  title"
        "info   bands"
        "status status";
    column-gap: 1rem;
    row-gap: 0.5rem;
}

.minibook-wrapper.minibook-style-horizontal .minibook-title {
    grid-area: title;
    margin-bottom: 0.25rem;
}

.minibook-wrapper.minibook-style-horizontal .minibook-info-box {
    grid-area: info;
    margin-bottom: 0;
}

.minibook-wrapper.minibook-style-horizontal .minibook-bands {
    grid-area: bands;
    align-self: flex-start;
}

.minibook-wrapper.minibook-style-horizontal .minibook-status {
    grid-area: status;
}

/* Make it stack on small screens */
@media (max-width: 640px) {
    .minibook-wrapper.minibook-style-horizontal {
        display: block;
    }

    .minibook-wrapper.minibook-style-horizontal .minibook-info-box {
        margin-bottom: 0.75rem;
    }
}

/* Compact: same layout, minder marge en kleinere tekst */
.minibook-wrapper.minibook-style-compact .minibook-info-box {
    margin: 0.25rem 0 0.5rem 0;
	font-weight: 600;
}

.minibook-wrapper.minibook-style-compact .minibook-info-box td {
    padding: 0.05rem 0;
    font-size: 0.5rem;
}

.minibook-wrapper.minibook-style-compact .minibook-bands .band {
    padding: 0.1rem 0.25rem;
    font-size: 0.5rem;
}

/* COMPACT: smaller band cells (override active highlight) */
.minibook-wrapper.minibook-style-compact .minibook-bands .band {
    padding: 0.05rem 0.05rem;
    font-size: 0.6rem;
    line-height: 1.1;
}

/* COMPACT: prevent active scale from enlarging cells */
.minibook-wrapper.minibook-style-compact .minibook-bands .band.active {
    transform: none;
    box-shadow: 0 0 4px rgba(42, 140, 255, 0.6);
}

/* COMPACT: allow narrower band cells */
.minibook-wrapper.minibook-style-compact .minibook-bands {
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    gap: 0.25rem;
}


/* Cards: subtiele kaart met rand en wat padding */
.minibook-wrapper.minibook-style-cards {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid currentColor;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Dark: iets donkerder paneel — nog steeds themevriendelijk */
.minibook-wrapper.minibook-style-dark {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(0,0,0,0.75);
    color: #f5f5f5;
}

.minibook-wrapper.minibook-style-dark .minibook-bands .band {
    border-color: rgba(255,255,255,0.7);
}

.minibook-wrapper.minibook-style-dark .minibook-bands .band.active {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
}

/* Text styles: no band icon list, only band text row */
.minibook-wrapper.minibook-style-text .minibook-bands,
.minibook-wrapper.minibook-style-text-compact .minibook-bands {
    display: none !important;
}

/* Text-only styles: make ALL text smaller */
.minibook-wrapper.minibook-style-text-compact {
    font-size: 0.65rem;
	font-weight: 600;
}


/* Neutrale highlight */
.minibook-bands .band.active {
    background-color: #2a8cff;
    color: #fff;
    border-color: #1f6bd1;
    box-shadow: 0 0 6px rgba(42, 140, 255, 0.7);
    transform: scale(1.03);
    transition: all 0.15s ease-in-out;
}





/* ==========================================================
   Card-Text style
   - card look
   - text only (no band grid)
   - clean dashboard-style
   ========================================================== */

.minibook-wrapper.minibook-style-card-text {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid currentColor;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);
    font-size: 0.8rem;
}

/* Hide band icons completely */
.minibook-wrapper.minibook-style-card-text .minibook-bands {
    display: none !important;
}

/* Info box slightly tighter */
.minibook-wrapper.minibook-style-card-text .minibook-info-box {
    margin: 0.25rem 0 0.5rem 0;
}

.minibook-wrapper.minibook-style-card-text .minibook-info-box td {
    padding: 0.1rem 0;
}

/* Title stays visible but compact */
.minibook-wrapper.minibook-style-card-text .minibook-title {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

/* Status centered and slightly separated */
.minibook-wrapper.minibook-style-card-text .minibook-status {
    margin-top: 0.35rem;
    font-size: 0.7rem;
    text-align: center;
}

/* ==========================================================
   Card-Text Compact style
   - card look
   - text only
   - same font sizing as other compact styles
   ========================================================== */

.minibook-wrapper.minibook-style-card-text-compact {
    padding: 0.5rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid currentColor;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    font-size: 0.65rem;       /* SAME as text-compact */
    font-weight: 600;
}

/* Hide band icons */
.minibook-wrapper.minibook-style-card-text-compact .minibook-bands {
    display: none !important;
}

/* Info box tighter than normal card-text */
.minibook-wrapper.minibook-style-card-text-compact .minibook-info-box {
    margin: 0.15rem 0 0.35rem 0;
}

.minibook-wrapper.minibook-style-card-text-compact .minibook-info-box td {
    padding: 0.05rem 0;
    font-size: 0.65rem;      /* force compact sizing */
}

/* Title compact */
.minibook-wrapper.minibook-style-card-text-compact .minibook-title {
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Status line very compact */
.minibook-wrapper.minibook-style-card-text-compact .minibook-status {
    margin-top: 0.25rem;
    font-size: 0.6rem;
    text-align: center;
}
