/* CSS Design System - Furuno NX-700 NAVTEX Simulator */
:root {
    --bg-dark: #121824;
    --card-bg: #1e293b;
    --border-color: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #38bdf8;
    --accent-hover: #0284c7;
    
    /* Furuno LCD Colors (Monochrome green/yellow phosphor style) */
    --lcd-bg-base: #7fa27f;
    --lcd-text: #0b1a0b;
    --lcd-text-dim: #253d25;
    --lcd-border: #4d664d;
    --lcd-highlight: #9ec19e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    padding-bottom: 2rem;
    min-height: 100vh;
}

/* Header */
.app-header {
    background-color: #0f172a;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #e2e8f0;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-version-badge {
    background-color: #334155;
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-back-hub {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.btn-back-hub:hover {
    color: var(--text-primary);
}

/* Dashboard Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
}

.sidebar-box h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.tool-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.indicator-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #64748b;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.indicator-led.online {
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}

/* Forms styling */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

input[type="text"], select, textarea {
    background-color: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 0.45rem 0.6rem;
    font-family: inherit;
    font-size: 0.85rem;
    width: 100%;
}

input[type="text"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}

textarea {
    resize: vertical;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
}

.btn-action {
    background-color: #334155;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-action:hover {
    background-color: #475569;
    border-color: #475569;
}

.btn-transmit {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 1px solid #0284c7;
}

.btn-transmit:hover {
    background: #0284c7;
}

.tx-sim-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.btn-sim-play,
.btn-sim-stop {
    flex: 1;
    min-width: 5rem;
    padding: 0.45rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: background-color 0.15s, opacity 0.15s;
}

.btn-sim-play {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    border-color: #059669;
}

.btn-sim-play:hover:not(:disabled) {
    background: #10b981;
}

.btn-sim-stop {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border-color: #dc2626;
}

.btn-sim-stop:hover:not(:disabled) {
    background: #ef4444;
}

.btn-sim-play:disabled,
.btn-sim-stop:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.tx-sim-status {
    width: 100%;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tx-sim-status.tx-sim-on {
    color: #34d399;
}

.tx-interval-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.15rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    opacity: 0.55;
    transition: opacity 0.2s, border-color 0.2s;
}

.tx-interval-wrap.is-active {
    opacity: 1;
    border-top-color: rgba(52, 211, 153, 0.35);
}

.tx-interval-wrap label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.tx-interval-wrap.is-active label {
    color: #34d399;
}

.tx-interval-wrap input {
    width: 100%;
    max-width: 8rem;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.tx-interval-wrap.is-active input {
    border-color: rgba(52, 211, 153, 0.5);
}

.tx-interval-hint {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Center Workspace and Bezel */
.workspace-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.bezel-frame {
    background-color: #272e38;
    background-image: linear-gradient(135deg, #2e3642 0%, #1c2229 100%);
    border: 8px solid #0f1318;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    max-width: 580px;
    width: 100%;
}

.bezel-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bezel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1a2027;
    padding-bottom: 0.5rem;
}

.bezel-header .logo {
    color: #e2e8f0;
    font-family: serif;
    font-weight: 900;
    letter-spacing: 0.15em;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.bezel-header .model-name {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* LCD screen area */
.screen-and-softkeys {
    border: 4px solid #14191f;
    border-radius: 6px;
    background-color: #14191f;
    padding: 6px;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.9);
}

.lcd-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 3px;
    font-family: 'Share Tech Mono', monospace;
}

/* Backlight intensity layers */
.lcd-backlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--lcd-bg-base);
    color: var(--lcd-text);
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    transition: background-color 0.3s, filter 0.3s;
}

/* Dimmer levels mapping */
.lcd-backlight[data-contrast="0"] { background-color: #2b392b; color: #121b12; filter: brightness(0.2); }
.lcd-backlight[data-contrast="1"] { background-color: #3b4d3b; filter: brightness(0.4); }
.lcd-backlight[data-contrast="2"] { background-color: #4b614b; filter: brightness(0.5); }
.lcd-backlight[data-contrast="3"] { background-color: #5b755b; filter: brightness(0.65); }
.lcd-backlight[data-contrast="4"] { background-color: #6a886a; filter: brightness(0.8); }
.lcd-backlight[data-contrast="5"] { background-color: #7fa27f; }
.lcd-backlight[data-contrast="6"] { background-color: #8fb68f; }
.lcd-backlight[data-contrast="7"] { background-color: #9ec99e; }
.lcd-backlight[data-contrast="8"] { background-color: #aeddbe; }
.lcd-backlight[data-contrast="9"] { background-color: #c4f1c4; filter: brightness(1.2) contrast(1.1); }

/* Screen is powered off styling */
.bezel-frame.powered-off .lcd-backlight {
    background-color: #1a221a !important;
    filter: brightness(0.05) contrast(0.5) !important;
}

.bezel-frame.powered-off .lcd-content,
.bezel-frame.powered-off .lcd-status-bar,
.bezel-frame.powered-off .lcd-nav-bar,
.bezel-frame.powered-off .lcd-user-display {
    visibility: hidden;
}

/* LCD Sections */
.lcd-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--lcd-border);
    font-size: 0.75rem;
    font-weight: 700;
    padding-bottom: 0.2rem;
    margin-bottom: 0.3rem;
}

.status-icons {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.unread-icon {
    background-color: var(--lcd-text);
    color: var(--lcd-bg-base);
    padding: 0 0.25rem;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 900;
}

.rx-indicator {
    background-color: #bf4040;
    color: white;
    padding: 0 0.25rem;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 900;
}

.battery-icon {
    border: 1px solid var(--lcd-text);
    padding: 0 0.15rem;
    font-size: 0.6rem;
    font-weight: 900;
}

.print-status {
    background-color: var(--lcd-text);
    color: var(--lcd-bg-base);
    padding: 0 0.15rem;
    font-size: 0.65rem;
    font-weight: bold;
}

.print-error {
    color: #bf4040;
    font-weight: 900;
}

.blinking {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* LCD Main display container */
.lcd-content {
    flex: 1;
    overflow: hidden;
    font-size: 0.85rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
}

/* Bottom Nav bar */
.lcd-nav-bar {
    border-top: 1.5px solid var(--lcd-border);
    margin-top: 0.3rem;
    padding-top: 0.15rem;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Bottom GPS Navigation data */
.lcd-user-display {
    border-top: 1px dashed var(--lcd-border);
    margin-top: 0.2rem;
    padding-top: 0.2rem;
    font-size: 0.7rem;
}

.user-display-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 0.5rem;
}

/* Dynamic Screens */
/* Boot startup screen */
.boot-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    gap: 0.5rem;
}

.boot-title {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.boot-diagnostics {
    font-size: 0.8rem;
    margin-top: 0.8rem;
    border-top: 1px solid var(--lcd-border);
    padding-top: 0.5rem;
    width: 80%;
}

/* Message List View */
.message-list-screen {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.list-header-row {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    border-bottom: 1px solid var(--lcd-border);
    padding-bottom: 0.1rem;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
}

.message-scroll-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.msg-row {
    display: flex;
    justify-content: space-between;
    padding: 0.15rem 0.25rem;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.8rem;
}

.msg-row.selected {
    background-color: var(--lcd-text);
    color: var(--lcd-bg-base);
}

.msg-row.unread {
    font-weight: bold;
}

.msg-id-col {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.icon-new { background-color: var(--lcd-text); color: var(--lcd-bg-base); padding: 0 0.15rem; font-size: 0.55rem; border-radius: 1px; font-weight: bold;}
.icon-sar { background-color: #bf4040; color: white; padding: 0 0.15rem; font-size: 0.55rem; border-radius: 1px; font-weight: bold;}
.icon-warn { border: 1px solid var(--lcd-text); padding: 0 0.15rem; font-size: 0.55rem; font-weight: bold;}
.icon-lock { font-size: 0.65rem; }

/* Detailed view */
.message-detail-screen {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    font-size: 0.8rem;
}

.detail-header {
    border-bottom: 1px dashed var(--lcd-border);
    padding-bottom: 0.25rem;
    margin-bottom: 0.4rem;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.5rem;
    font-size: 0.75rem;
}

.detail-body {
    white-space: pre-line;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 0.2rem;
    flex: 1;
}

/* Menu View */
.menu-screen {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-title {
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid var(--lcd-border);
    padding-bottom: 0.2rem;
    margin-bottom: 0.4rem;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem;
    border-radius: 2px;
}

.menu-item-row.selected {
    background-color: var(--lcd-text);
    color: var(--lcd-bg-base);
}

/* Mask editor screen */
.mask-editor-screen {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mask-group {
    margin-bottom: 0.6rem;
}

.mask-label {
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--lcd-text-dim);
}

.mask-letters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    margin-top: 0.15rem;
    font-size: 0.75rem;
}

.mask-letter {
    width: 14px;
    text-align: center;
    border-radius: 2px;
}

.mask-letter.selected {
    background-color: var(--lcd-text);
    color: var(--lcd-bg-base);
}

.mask-letter.rejected {
    color: var(--lcd-text-dim);
    text-decoration: line-through;
}

/* Alarm popup overlay */
.lcd-error-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #bf4040;
    color: white;
    border: 4px solid white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
    width: 280px;
}

.alarm-header {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    animation: flash-red 0.5s infinite alternate;
}

@keyframes flash-red {
    0% { color: white; }
    100% { color: #facc15; }
}

.alarm-body {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.alarm-silence-btn {
    background-color: white;
    color: #bf4040;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8rem;
}

.alarm-silence-btn:hover {
    background-color: #e2e8f0;
}

/* Keyboard and control buttons */
.keyboard-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    border-top: 2px solid #1a2027;
    padding-top: 1.25rem;
}

/* Navigation D-pad */
.cursor-pad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.cursor-row {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.nav-btn {
    width: 44px;
    height: 38px;
    background-color: #4b5563;
    border: 1px solid #374151;
    border-radius: 6px;
    color: #e5e7eb;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 0 #1f2937, 0 4px 6px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #1f2937, 0 1px 3px rgba(0,0,0,0.5);
}

.nav-btn.btn-ent {
    width: 50px;
    height: 38px;
    background-color: #10b981;
    border-color: #047857;
    box-shadow: 0 3px 0 #065f46, 0 4px 6px rgba(0,0,0,0.5);
    font-size: 0.75rem;
    font-weight: 800;
}

.nav-btn.btn-ent:active {
    box-shadow: 0 1px 0 #065f46;
}

/* Control buttons (List, Print, Menu) */
.control-keys {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    justify-content: center;
}

.control-keys-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}

.control-btn {
    background-color: #374151;
    border: 1px solid #1f2937;
    border-radius: 4px;
    color: #d1d5db;
    padding: 0.45rem 0.25rem;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 0 #111827, 0 4px 6px rgba(0,0,0,0.4);
    text-align: center;
    line-height: 1.2;
}

.control-btn small {
    font-size: 0.55rem;
    color: var(--text-secondary);
}

.control-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #111827, 0 1px 3px rgba(0,0,0,0.4);
}

/* Dimmer & Power Key Row */
.dimmer-power-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dim-btn {
    flex: 1;
    background-color: #4b5563;
    border: 1px solid #374151;
    border-radius: 4px;
    color: #e5e7eb;
    padding: 0.4rem;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 0 #1f2937, 0 4px 6px rgba(0,0,0,0.4);
}

.dim-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #1f2937;
}

.power-btn {
    background-color: #ef4444;
    border: 1px solid #991b1b;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: white;
    cursor: pointer;
    box-shadow: 0 3px 0 #7f1d1d, 0 4px 6px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.power-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #7f1d1d;
}

/* Virtual Printer log sheet */
.printer-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 580px;
    overflow: hidden;
}

.printer-head {
    background-color: #0f172a;
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.printer-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.btn-clear-printer {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 600;
}

.btn-clear-printer:hover {
    background-color: rgba(239, 68, 68, 0.2);
}

.printer-body {
    padding: 1.5rem 1rem;
    background-color: #0b0f19;
}

.printer-paper {
    background-color: #fafaf9;
    color: #1c1917;
    border-left: 2px dashed #d6d3d1;
    border-right: 2px dashed #d6d3d1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-family: 'Courier Prime', monospace;
    font-size: 0.8rem;
    padding: 1.5rem;
    min-height: 200px;
    max-height: 350px;
    overflow-y: auto;
    white-space: pre-wrap;
    line-height: 1.4;
    position: relative;
    /* Jagged paper effect */
    background-image: linear-gradient(135deg, transparent 75%, #0b0f19 75%),
                      linear-gradient(225deg, transparent 75%, #0b0f19 75%);
    background-position: 0 0;
    background-size: 10px 10px;
    background-repeat: repeat-x;
}

.printer-feed-message {
    text-align: center;
    color: #78716c;
    font-size: 0.75rem;
    font-weight: bold;
    border-top: 1px dashed #d6d3d1;
    border-bottom: 1px dashed #d6d3d1;
    padding: 0.25rem 0;
    margin-bottom: 1rem;
}

/* Audio Banner */
.audio-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: var(--accent);
    color: #0f172a;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1000;
}

.audio-banner button {
    background-color: #0f172a;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.3rem 0.75rem;
    font-weight: bold;
    cursor: pointer;
}
