/*============================================================================
  WERKFLOW THEMES
  Owner: Kai
============================================================================*/

:root {
    --nav-height: 70px;
    --transition: 0.2s;
}

/* Theme: Gemini (Default) */
[data-theme="gemini"] {
    --primary: #0b57d0; --on-primary: #ffffff;
    --bg-body: #f0f4f9; --bg-surface: #ffffff; --bg-container: #eef2f6;
    --text-main: #1f1f1f; --text-sub: #444746;
    --outline: transparent; --input-border: transparent;
    --radius-l: 24px; --radius-m: 16px; --radius-s: 12px;
    --shadow: 0 2px 6px rgba(0,0,0,0.08);
    --border-w: 0px; --font: 'Roboto', sans-serif; --btn-txt: uppercase;
}
[data-theme="gemini"].dark-mode {
    --primary: #a8c7fa; --on-primary: #062e6f;
    --bg-body: #101010; --bg-surface: #1e1f20; --bg-container: #2d2e30;
    --text-main: #e3e3e3; --text-sub: #c4c7c5; --input-border: 1px solid #444;
}

/* Theme: Fruit (iOS) */
[data-theme="fruit"] {
    --primary: #007AFF; --on-primary: #ffffff;
    --bg-body: #F2F2F7; --bg-surface: rgba(255,255,255,0.95); --bg-container: rgba(255,255,255,0.6);
    --text-main: #000000; --text-sub: #8E8E93;
    --outline: rgba(0,0,0,0.1); --input-border: rgba(0,0,0,0.1);
    --radius-l: 18px; --radius-m: 12px; --radius-s: 10px;
    --shadow: 0 4px 12px rgba(0,0,0,0.06);
    --border-w: 0.5px; --font: -apple-system, BlinkMacSystemFont, sans-serif; --btn-txt: none;
    --backdrop: blur(20px);
}
[data-theme="fruit"].dark-mode {
    --primary: #0A84FF; --bg-body: #000000; --bg-surface: rgba(28,28,30,0.95); --bg-container: rgba(44,44,46,0.6);
    --text-main: #FFFFFF; --text-sub: #98989D; --outline: rgba(255,255,255,0.15); --input-border: rgba(255,255,255,0.2);
}

/* Theme: Fluent (Windows) */
[data-theme="fluent"] {
    --primary: #0067C0; --on-primary: #ffffff;
    --bg-body: #f3f3f3; --bg-surface: #ffffff; --bg-container: #ffffff;
    --text-main: #242424; --text-sub: #616161;
    --outline: #d1d1d1; --input-border: #d1d1d1;
    --radius-l: 6px; --radius-m: 4px; --radius-s: 4px;
    --shadow: 0 2px 4px rgba(0,0,0,0.04);
    --border-w: 1px; --font: 'Segoe UI', sans-serif; --btn-txt: none;
}
[data-theme="fluent"].dark-mode {
    --primary: #47A6FF; --bg-body: #202020; --bg-surface: #2b2b2b; --bg-container: #333333;
    --text-main: #ffffff; --text-sub: #d0d0d0; --outline: #555555; --input-border: #555;
}

/* Theme: Nordic (Minimal) */
[data-theme="nordic"] {
    --primary: #5E81AC; --on-primary: #ECEFF4;
    --bg-body: #ECEFF4; --bg-surface: #E5E9F0; --bg-container: #D8DEE9;
    --text-main: #2E3440; --text-sub: #4C566A;
    --outline: #4C566A; --input-border: #4C566A;
    --radius-l: 0px; --radius-m: 0px; --radius-s: 0px;
    --shadow: none; --border-w: 2px; --font: 'Verdana', sans-serif; --btn-txt: uppercase;
}
[data-theme="nordic"].dark-mode {
    --primary: #88C0D0; --on-primary: #2E3440; --bg-body: #2E3440; --bg-surface: #3B4252; --bg-container: #434C5E;
    --text-main: #ECEFF4; --text-sub: #D8DEE9; --outline: #ECEFF4; --input-border: #ECEFF4;
}

/*============================================================================
  BASE STYLES
============================================================================*/
* { box-sizing: border-box; }
body { 
    font-family: var(--font); 
    background: var(--bg-body); 
    color: var(--text-main); 
    margin: 0; 
    padding-bottom: 100px; 
    transition: background 0.3s, color 0.3s; 
    -webkit-tap-highlight-color: transparent; 
}

/*============================================================================
  HEADER
============================================================================*/
.app-header { 
    background: var(--bg-surface); 
    padding: 15px 20px; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom-left-radius: var(--radius-l); 
    border-bottom-right-radius: var(--radius-l); 
    box-shadow: var(--shadow); 
    border-bottom: var(--border-w) solid var(--outline); 
    backdrop-filter: var(--backdrop, none); 
    -webkit-backdrop-filter: var(--backdrop, none); 
}
.logo { font-weight: 800; font-size: 1.2rem; color: var(--text-main); letter-spacing: -0.5px; white-space: nowrap; }
.header-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.icon-btn { 
    font-size: 1.2rem; 
    cursor: pointer; 
    padding: 10px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--text-main); 
    background: transparent; 
    transition: 0.2s; 
    border: none; 
}
.icon-btn:hover { background: var(--bg-container); }
.team-select-wrapper { 
    background: var(--bg-container); 
    border-radius: var(--radius-m); 
    padding: 0 10px; 
    display: flex; 
    align-items: center; 
    flex-grow: 1; 
    margin: 0 15px; 
    max-width: 400px; 
    height: 40px; 
    border: var(--border-w) solid var(--outline); 
    overflow: hidden; 
}
.team-selector { 
    border: none; 
    background: transparent; 
    font-size: 1rem; 
    font-weight: 700; 
    color: var(--primary); 
    width: 100%; 
    outline: none; 
    font-family: var(--font); 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    overflow: hidden; 
}

@media (max-width: 600px) { 
    .app-header { padding: 10px 15px; gap: 8px; } 
    .logo { font-size: 1rem; } 
    .team-select-wrapper { margin: 0 5px; } 
    .header-actions { gap: 0px; } 
    .icon-btn { padding: 8px; }
    
    /* Mobile: Akkordeon */
    .accordion-content { padding: 12px; }
    .accordion-section h4 { font-size: 0.75rem; }
    .mini-list-item { padding: 8px 10px; font-size: 0.85rem; }
    .mini-delete-btn { padding: 3px 8px; font-size: 0.7rem; }
    
    /* Mobile: Station Form */
    .station-add-form { padding: 10px; }
    .station-add-row { flex-wrap: wrap; }
    .station-add-row input[type="text"] { min-width: 60px; }
    .station-add-row select { min-width: 80px; }
    .station-add-row button { width: 100%; margin-top: 8px; }
    
    /* Mobile: Buttons */
    .action-bar { flex-wrap: wrap; }
    .action-btn { flex: 1 1 45%; min-width: 100px; }
    
    /* Mobile: Sub-Tabs */
    .sub-tabs { padding: 3px; }
    .sub-tab { padding: 8px 10px; font-size: 0.85rem; }
    
    /* Mobile: Plan-Tabelle */
    .plan-visual table { font-size: 0.75rem; }
    .plan-visual th, .plan-visual td { padding: 6px 4px; }
}

/*============================================================================
  CARDS & LAYOUT
============================================================================*/
.tab-content { display: none; padding: 0 15px; animation: fadeIn 0.3s ease-out; }
.tab-content.active { display: block; }
.card { 
    background: var(--bg-surface); 
    border-radius: var(--radius-l); 
    padding: 20px; 
    margin-bottom: 16px; 
    box-shadow: var(--shadow); 
    border: var(--border-w) solid var(--outline); 
    backdrop-filter: var(--backdrop, none); 
    -webkit-backdrop-filter: var(--backdrop, none); 
}
.list-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 12px 0; 
    border-bottom: 1px solid var(--outline); 
}
.list-row:last-child { border-bottom: none; }
h2 { margin: 0 0 15px 0; font-weight: 700; font-size: 1.3rem; }
h4 { font-size: 0.8rem; text-transform: uppercase; color: var(--text-sub); letter-spacing: 1px; margin-top: 10px; font-weight: 700; }

/*============================================================================
  BUTTONS & INPUTS
============================================================================*/
.btn { 
    background: var(--bg-container); 
    color: var(--primary); 
    padding: 14px; 
    border: var(--border-w) solid var(--outline); 
    border-radius: 100px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    cursor: pointer; 
    width: 100%; 
    margin-top: 8px; 
    font-family: var(--font); 
    text-transform: var(--btn-txt); 
    touch-action: manipulation; 
}
[data-theme="fluent"] .btn, [data-theme="nordic"] .btn, [data-theme="fruit"] .btn { border-radius: var(--radius-m); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: var(--on-primary); border: none; }
.btn-mix { background: var(--bg-container); color: var(--text-main); }
.btn-danger { background: #f9dedc; color: #b3261e; border: none; }

input:not([type="checkbox"]), select { 
    width: 100%; 
    padding: 14px 16px; 
    background: var(--bg-surface); 
    border: 1px solid var(--outline); 
    border-radius: var(--radius-s); 
    color: var(--text-main); 
    font-size: 1rem; 
    box-sizing: border-box; 
    outline: none; 
    font-family: var(--font); 
    -webkit-appearance: none; 
    appearance: none; 
}
input:not([type="checkbox"]):focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(11, 87, 208, 0.2);
}
input[type="checkbox"] { 
    -webkit-appearance: checkbox; 
    appearance: checkbox; 
    width: 20px; 
    height: 20px; 
    cursor: pointer; 
    accent-color: var(--primary); 
}
select { 
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23747775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); 
    background-repeat: no-repeat; 
    background-position: right 1rem center; 
    background-size: 1em; 
}
.checkbox-wrapper { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-top: 10px; 
    background: var(--bg-container); 
    padding: 10px; 
    border-radius: var(--radius-s); 
    border: var(--border-w) solid var(--outline); 
}

/*============================================================================
  NAVIGATION BAR
============================================================================*/
.nav-bar { 
    position: fixed; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 90%; 
    max-width: 400px; 
    background: var(--bg-surface); 
    display: flex; 
    border-radius: 100px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); 
    z-index: 2000; 
    padding: 6px; 
    border: var(--border-w) solid var(--outline); 
    backdrop-filter: var(--backdrop, none); 
    -webkit-backdrop-filter: var(--backdrop, none); 
}
[data-theme="fluent"] .nav-bar, [data-theme="nordic"] .nav-bar { border-radius: var(--radius-m); }
[data-theme="fruit"] .nav-bar { border-radius: 20px; }
.nav-item { 
    flex: 1; 
    padding: 12px; 
    text-align: center; 
    font-size: 0.75rem; 
    font-weight: 600; 
    color: var(--text-sub); 
    cursor: pointer; 
    border-radius: 50px; 
    transition: all 0.2s; 
    touch-action: manipulation; 
    -webkit-user-select: none; 
    user-select: none; 
    -webkit-tap-highlight-color: rgba(0,0,0,0.1); 
}
.nav-item:active { transform: scale(0.95); opacity: 0.8; }
.nav-item.active { background: var(--bg-container); color: var(--primary); }
[data-theme="nordic"] .nav-item.active { background: var(--text-main); color: var(--bg-body); border-radius: var(--radius-s); }

/*============================================================================
  ACTION BAR & STATION CARDS
============================================================================*/
.action-bar { display: flex; gap: 10px; margin-top: 20px; }
.action-btn { 
    flex: 1; 
    padding: 15px; 
    border-radius: var(--radius-m); 
    border: var(--border-w) solid var(--outline); 
    font-weight: 600; 
    font-size: 0.9rem; 
    cursor: pointer; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
    background: var(--bg-container); 
    color: var(--text-main); 
    touch-action: manipulation; 
}
.action-btn span { font-size: 1.5rem; }

.station-card { 
    background: var(--bg-container); 
    border-radius: var(--radius-m); 
    padding: 16px; 
    margin-bottom: 12px; 
    display: flex; 
    flex-direction: column; 
    border: var(--border-w) solid var(--outline); 
}
.station-card.inactive { opacity: 0.6; }
.station-slots { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.station-slot { 
    padding: 4px 10px; 
    border-radius: 6px; 
    font-size: 0.75rem; 
    font-weight: 600; 
    background: var(--bg-surface); 
    border: 1px solid var(--outline); 
}

/*============================================================================
  TOGGLE SWITCH
============================================================================*/
.station-toggle { position: relative; display: inline-block; width: 44px; height: 26px; }
.station-toggle input { opacity: 0; width: 0; height: 0; }
.slider { 
    position: absolute; 
    cursor: pointer; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background-color: var(--outline); 
    transition: .3s; 
    border-radius: 34px; 
}
.slider:before { 
    position: absolute; 
    content: ""; 
    height: 20px; 
    width: 20px; 
    left: 3px; 
    bottom: 3px; 
    background-color: white; 
    transition: .3s; 
    border-radius: 50%; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
}
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(18px); }

/*============================================================================
  SKILL BADGES
============================================================================*/
.skill-badge { 
    display: inline-block; 
    padding: 6px 14px; 
    margin: 4px; 
    background: var(--bg-container); 
    color: var(--text-sub); 
    border-radius: 8px; 
    font-size: 0.8rem; 
    cursor: pointer; 
    border: 1px solid transparent; 
    -webkit-user-select: none; 
    user-select: none; 
    touch-action: manipulation; 
    -webkit-tap-highlight-color: rgba(0,0,0,0.1); 
    font-family: inherit; 
    line-height: 1.4; 
}
.skill-badge:active { transform: scale(0.95); opacity: 0.8; }
.skill-badge.active { background: #c4eed0; color: #146c2e; border: 1px solid #146c2e; font-weight: 700; }
[data-theme="nordic"] .skill-badge.active { background: var(--text-main); color: var(--bg-body); border-color: var(--text-main); }

/*============================================================================
  BADGES
============================================================================*/
.lent-card { border: 1px dashed var(--text-sub); background: var(--bg-container); opacity: 0.8; }
.guest-badge { background: #ef6c00; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; margin-left: 8px; }
.lent-badge { background: var(--text-sub); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; margin-left: 8px; }
.tandem-badge { background: var(--primary); color: var(--on-primary); padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; margin-left: 8px; }
.circle-btn { 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: none; 
    cursor: pointer; 
    font-size: 1rem; 
    margin-left: 8px; 
    touch-action: manipulation; 
}
.btn-transfer { background: var(--bg-container); color: var(--primary); border: 1px solid var(--outline); }
.btn-return { background: #ffe0b2; color: #ef6c00; }
.count-badge { 
    display: inline-block; 
    width: 24px; 
    height: 24px; 
    line-height: 24px; 
    border-radius: 50%; 
    background: var(--bg-surface); 
    color: var(--text-sub); 
    font-size: 0.75rem; 
    font-weight: bold; 
}

/*============================================================================
  PLAN TABLE
============================================================================*/
.plan-visual { width: 100%; border-collapse: separate; border-spacing: 0 4px; font-size: 0.85rem; margin-top: 15px; }
.plan-visual td { 
    padding: 10px 4px; 
    background: var(--bg-container); 
    vertical-align: middle; 
    border: var(--border-w) solid var(--outline); 
}
.plan-visual tr td:first-child { 
    border-top-left-radius: 12px; 
    border-bottom-left-radius: 12px; 
    font-weight: 700; 
    color: var(--primary); 
    text-align: center; 
    width: 30px; 
}
.plan-visual tr td:last-child { border-top-right-radius: 12px; border-bottom-right-radius: 12px; }
.plan-station { 
    display: block; 
    padding: 6px; 
    border-radius: 6px; 
    font-size: 0.75rem; 
    text-align: center; 
    color: #1f1f1f; 
    font-weight: 500; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
}
.plan-station.is-external { 
    background-color: #444746 !important; 
    color: #fff !important; 
    border: 1px dashed var(--text-sub); 
    font-weight: 700; 
}

.role-header-display { 
    background: var(--bg-container); 
    border-left: 4px solid var(--primary); 
    padding: 15px; 
    border-radius: var(--radius-m); 
    margin-bottom: 20px; 
    border: var(--border-w) solid var(--outline); 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
}
.role-chip { 
    padding: 6px 12px; 
    background: var(--bg-surface); 
    border-radius: 8px; 
    font-size: 0.8rem; 
    border: 1px solid var(--outline); 
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); 
}
.role-chip strong { color: var(--primary); display: block; font-size: 0.7rem; text-transform: uppercase; margin-bottom: 2px; }
.plan-info-header { 
    text-align: center; 
    background: var(--bg-container); 
    padding: 10px; 
    border-radius: 8px; 
    margin-bottom: 10px; 
    font-weight: bold; 
    color: var(--primary); 
    border: var(--border-w) solid var(--outline); 
}

/*============================================================================
  UTILITIES & ANIMATIONS
============================================================================*/
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.admin-only { display: none; }
body.admin-mode .admin-only { display: block; }
#print-overlay { display: none; }

/*============================================================================
  SUB-TABS (Verwalten)
============================================================================*/
.sub-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    background: var(--bg-container);
    padding: 5px;
    border-radius: var(--radius-m);
}
.sub-tab {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: var(--text-sub);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: var(--radius-s);
    transition: all 0.2s;
    font-family: var(--font);
}
.sub-tab.active {
    background: var(--bg-surface);
    color: var(--primary);
    box-shadow: var(--shadow);
}
.sub-tab:hover:not(.active) {
    background: var(--bg-surface);
    opacity: 0.7;
}
.subtab-content {
    display: none;
}
.subtab-content.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

/*============================================================================
  ACCORDION (Team-Verwaltung)
============================================================================*/
.accordion-item {
    background: var(--bg-surface);
    border-radius: var(--radius-m);
    margin-bottom: 10px;
    overflow: hidden;
    border: var(--border-w) solid var(--outline);
    box-shadow: var(--shadow);
}
.accordion-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
    transition: background 0.2s;
    -webkit-user-select: none;
    user-select: none;
}
.accordion-header:hover {
    background: var(--bg-container);
}
.accordion-header.active {
    border-bottom: 1px solid var(--outline);
}
.accordion-title {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.accordion-meta {
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-top: 4px;
}
.accordion-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
    color: var(--text-sub);
}
.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    padding: 15px;
    background: var(--bg-container);
}
.accordion-content.active {
    display: block;
}
.accordion-section {
    margin-bottom: 20px;
}
.accordion-section:last-child {
    margin-bottom: 0;
}
.accordion-section h4 {
    margin-bottom: 10px;
}
.mini-list {
    background: var(--bg-surface);
    border-radius: var(--radius-s);
    overflow: hidden;
}
.mini-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--outline);
    font-size: 0.9rem;
}
.mini-list-item:last-child {
    border-bottom: none;
}
.mini-delete-btn {
    background: #f9dedc;
    color: #b3261e;
    border: none;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}
.mini-delete-btn:hover {
    background: #f5c6c2;
}
.add-inline {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    align-items: stretch;
}
.add-inline input[type="text"] {
    flex: 1 1 auto !important;
    min-width: 100px !important;
    width: auto !important;
    padding: 10px 12px;
    font-size: 0.9rem;
}
.add-inline button {
    flex: 0 0 auto;
    padding: 10px 15px;
    white-space: nowrap;
}

/* Station Form im Akkordeon */
.station-add-form {
    margin-top: 10px;
    padding: 12px;
    background: var(--bg-surface);
    border-radius: var(--radius-s);
}
.station-add-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.station-add-row input[type="text"] {
    flex: 1;
    min-width: 80px;
}
.station-add-row input[type="number"] {
    width: 60px;
    text-align: center;
}
.station-add-row select {
    width: 100px;
}
.station-add-row label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}
.station-add-row label input[type="checkbox"] {
    width: auto;
}

/*============================================================================
  PRINT STYLES
============================================================================*/
@media print {
    @page { size: A4 landscape; margin: 10mm; }
    body { background: white; color: black; padding: 0; -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
    body > * { display: none !important; }
    #print-overlay { display: block !important; position: absolute; top: 0; left: 0; width: 100%; background: white; z-index: 9999; }
    .print-table { width: 100%; border-collapse: collapse; font-family: "Helvetica", "Arial", sans-serif; font-size: 11pt; color: black; border: 2px solid #000; }
    .print-table th { background-color: #d0d0d0 !important; color: #000 !important; padding: 8px; border: 1px solid #444; text-align: left; font-weight: bold; border-bottom: 2px solid #000; }
    .print-table td { border: 1px solid #444; padding: 8px; color: black !important; }
    .print-table tbody tr:nth-child(even) td { background-color: #f2f2f2 !important; }
    .print-table tbody tr:nth-child(odd) td { background-color: #fff !important; }
    .plan-station { background: none !important; color: black !important; border: none; font-weight: normal; padding: 0; }
    .plan-station::after { content: attr(data-full); font-size: 11pt; font-weight: normal; }
    .plan-station { font-size: 0; }
    .plan-station.is-external { border: 2px solid #000 !important; font-weight: bold; background: #ddd !important; padding: 2px 5px; }
    .role-header-display { display: block; border: 2px solid #000; background: #fff; margin-bottom: 15px; padding: 10px; }
    .role-chip { border: 1px solid #000; display: inline-block; margin-right: 15px; margin-bottom: 5px; background-color: #f9f9f9 !important; padding: 4px 8px; }
    .plan-info-header { border: 1px solid #000; background: #fff !important; color: #000 !important; font-weight: bold; margin-bottom: 10px; padding: 8px; text-align: center; }
}
