:root {
  --bg-color: #121212;
  --surface-color: #1e1e1e;
  --text-color: #e0e0e0;
  --accent-color: #bb86fc;
  --success-color: #03dac6;
  --error-color: #cf6679;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
}

/* Header */
header {
  height: 40px;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #333;
  -webkit-app-region: drag;
}

h1 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  opacity: 0.8;
}

#connection-status {
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #333;
  color: #aaa;
  text-transform: uppercase;
}

#connection-status.connected {
  background-color: rgba(3, 218, 198, 0.2);
  color: var(--success-color);
}

#connection-status.disconnected {
  background-color: rgba(207, 102, 121, 0.2);
  color: var(--error-color);
}

/* Setup Screen */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

#setup-screen {
  text-align: center;
  background: var(--surface-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.control-panel {
  width: 300px;
}

.control-group {
  margin-bottom: 15px;
}

.control-group label {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-bottom: 5px;
  text-transform: uppercase;
}

input[type="text"],
select {
  width: 100%;
  padding: 8px;
  background: #000;
  color: white;
  border: 1px solid #444;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 12px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

button:hover {
  background: #0055aa;
}

.big-btn {
  background: #0066cc !important;
  color: white;
  padding: 15px !important;
  font-size: 1.2em !important;
  margin-top: 20px !important;
  border-radius: 8px !important;
}

.big-btn:hover {
  background: #0055aa !important;
}

/* BROADCAST SCREEN - FIXED HEIGHT LAYOUT */
#broadcast-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  background: #111;
}

/* Top bar - fixed 50px */
.top-bar {
  height: 50px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #222;
  border-bottom: 1px solid #333;
}

.status-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  flex-shrink: 1; 
  min-width: 0; 
  max-width: 70%; /* V2.1.5 Fix: Increased limit to prevent truncating "DIDIER" */
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-indicator {
  font-weight: bold;
  color: #666;
  font-size: 11px;
  /* Slightly smaller for horizontal fit */
  padding: 4px 8px;
  background-color: #333;
  border-radius: 4px;
  text-transform: uppercase;
}

.status-indicator.connected {
  color: #00ff00;
}

.rec-and-buttons-bunker {
  display: flex;
  align-items: center;
  gap: 15px; 
  margin-left: auto;
  flex-shrink: 0;
  height: 100%;
  width: fit-content; /* V2.1.5: Fix - No extra length on the left */
}

#rec-metadata {
  display: none; /* Controlled by JS flex */
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.85); /* V4.0.0: Opaque bg instead of expensive backdrop-filter */
  padding: 4px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

#rec-timer {
  color: #ef4444;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 16px;
  min-width: 80px;
  text-align: center;
}

.stats-display {
  font-size: 10px;
  color: #888;
  font-family: monospace;
}

#settings-toggle-btn {
  padding: 8px 15px;
  background: #444;
  font-size: 12px;
}

/* Meters area - takes remaining space */
.meters-wrapper {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: #333; /* Gap color */
  overflow: hidden;
  position: relative;
}

.meter-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #333;
  background: #000;
  padding: 10px;
  padding-top: 45px; /* SPACE FOR ABSOLUTE HEADER */
  position: relative;
  min-width: 150px;
  min-height: 200px; /* V14.9.28: Ensure minimum height */
  overflow: hidden;
}

.meter-panel:last-child {
  border-right: none;
}

.meter-panel h3 {
  margin: 0;
  font-size: 11px;
  color: #fff;
  padding: 6px;
  border-radius: 4px;
  text-transform: uppercase;
  text-align: center;
  flex-shrink: 0;
  z-index: 20;
}

.vu-readout {
  display: none !important; /* V2.4.3: Disabled in favor of .db-label in Header */
}
  
.vu-stats {
  position: relative;
  margin-top: auto; 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  width: 100%;
  font-family: 'Roboto Mono', monospace;
  font-size: 9px;
  color: #aaa;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #222;
  height: 46px; /* V2.1.5: Fixed height for alignment across all panels */
}

.vu-stats span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

/* Canvas container with explicit height calculation */
.meter-panel canvas {
  width: 100% !important;
  flex: 1; /* Take remaining space */
  display: block;
  background: #050505;
  border-radius: 4px;
  min-height: 0;
  min-width: 0;
}

/* Controls panel - auto height */
.audio-controls {
  height: auto;
  min-height: 80px;
  flex-shrink: 0;
  background: #1a1a1a;
  border-top: 1px solid #333;
  padding: 15px;
  /* overflow: hidden; REMOVED to allow visibility */
}

.control-row {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.control-row:last-child {
  margin-bottom: 0;
}

.toggles {
  display: flex;
  gap: 15px;
  background: #000;
  padding: 8px;
  border: 1px solid #444;
  border-radius: 4px;
  align-items: center;
  height: 36px;
}

.toggles label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #ddd;
  font-size: 12px;
}

.slider-markers {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #888;
  margin-top: 4px;
  padding-right: 48px;
  /* Offset for the dB label on the right */
  padding-left: 2px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Panel Volume Control */
.panel-volume-container {
  position: relative;
  margin-top: 10px; /* V14.9.32: Separate from canvas */
  background: #111;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 30;
  border: 1px solid #222;
  height: 42px; /* V2.1.5: Fixed height for alignment */
}

.panel-volume-slider {
  flex: 1;
  height: 4px;
  cursor: pointer;
  accent-color: #2196F3;
}

#gain-in {
  accent-color: #F44336;
}

body:not(.mobile-mode) #btn-mute-mic {
  width: auto !important;
  min-width: 48px !important;
  padding: 3px 4px !important;
}

.panel-volume-label {
  font-family: monospace;
  font-size: 10px;
  color: #4CAF50;
  min-width: 35px;
  text-align: right;
}

/* Modal System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* V4.0.0: More opaque bg instead of blur */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 20px;
}

@media (max-width: 520px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

.modal-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  width: 95%;
  max-width: 900px; /* V14.9.33: Wider for 2 columns */
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #333;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid #222;
  padding-bottom: 15px;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.2em;
  color: #4CAF50;
  letter-spacing: 1px;
}

.close-modal {
  background: none;
  border: none;
  color: #888;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.close-modal:hover {
  color: white;
}

.settings-btn {
  background: #222;
  border: 1px solid #333;
  color: #aaa;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  width: 100px; /* V2.1.5: FIXED WIDTH - NO EXPANSION */
  height: 32px !important; /* V2.1.5: FIXED HEIGHT (ULTRA-PRO) */
  flex-shrink: 0;
  margin: 0;
  box-sizing: border-box;
}

.settings-btn:hover {
  background: #333;
  color: white;
  border-color: #444;
}

/* --- RECORDING STYLES --- */
.rec-btn {
    background: #333;
    color: #ef4444;
    border: 1px solid #444;
    padding: 0 12px;
    border-radius: 4px; /* V2.1.5: Harmonized with Settings */
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 1px;
    width: 95px; /* V2.1.5: FIXED WIDTH - NO SHIFT */
    height: 32px !important; /* V2.1.5: FIXED HEIGHT (ULTRA-PRO) */
    flex-shrink: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.rec-btn:hover {
    background: #444;
    color: #ff0000;
}

.rec-btn.recording {
    background: #dc2626 !important;
    color: white !important;
    border-color: #ff0000 !important;
    animation: pulse-red 1.5s infinite;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

@keyframes pulse-secure {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.secure-active span {
    animation: pulse-secure 2s infinite;
    display: inline-block;
}

/* --- STATIONS & CHECKBOXES (V2.1.5) --- */
.station-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #333;
    font-size: 11px;
    color: #ccc;
}

.btn-del-station {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0 4px;
    font-size: 14px;
    margin: 0;
    width: auto;
}

.btn-del-station:hover {
    color: #ff4444;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #333;
    border-radius: 3px;
    border: 1px solid #444;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #444;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ====================================================
   📱 MOBILE REPORTER MODE
   ==================================================== */
body.mobile-mode #setup-screen {
    width: 95%;
    padding: 20px;
    margin: auto;
    box-sizing: border-box;
}

body.mobile-mode #setup-screen .control-panel {
    width: 100% !important;
    box-sizing: border-box;
}

body.mobile-mode #setup-screen h2 {
    font-size: 60px !important;
    margin-bottom: 40px !important;
}

body.mobile-mode #setup-screen .control-group label {
    font-size: 40px !important;
    margin-bottom: 20px !important;
}

body.mobile-mode #setup-screen input[type="text"] {
    font-size: 40px !important;
    padding: 25px !important;
    border-radius: 12px !important;
    height: 100px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

body.mobile-mode #setup-screen .listen-only-container {
    display: none !important; /* V16: Hidden on mobile as per user request */
}

body.mobile-mode #setup-screen .switch {
    transform: scale(2.5);
    transform-origin: left center;
    margin-right: 80px !important;
}

body.mobile-mode #setup-screen #connect-btn {
    font-size: 50px !important;
    padding: 40px !important;
    border-radius: 20px !important;
    margin-top: 30px !important;
    width: 100% !important;
}

body.mobile-mode .top-bar {
    height: 60px;
}

/* Re-enable and style settings button for mobile */
body.mobile-mode .settings-btn {
    display: none !important;
}

body.mobile-mode #mobile-settings-container {
    display: flex !important;
}

/* --- MOBILE "ULTRA BASIC" AUDIO MENU --- */
/* Hide unnecessary config modules */
body.mobile-mode .hide-on-mobile,
body.mobile-mode #stability-monitors {
    display: none !important;
}

/* Make close button massive */
body.mobile-mode .btn-close-modal {
    font-size: 40px !important;
    padding: 30px 60px !important;
    background: #d32f2f !important;
    color: white !important;
    border-radius: 12px !important;
    font-weight: bold !important;
}

/* Enlarge Lock Screen */
body.mobile-mode #lock-icon {
    font-size: 10em !important;
    margin-bottom: 30px !important;
}

body.mobile-mode #lock-explanation {
    font-size: 40px !important;
    line-height: 1.4 !important;
    padding: 20px 40px !important;
}

body.mobile-mode #btn-unlock-screen {
    font-size: 40px !important;
    padding: 30px 50px !important;
    border-radius: 15px !important;
}

/* Force Vertical Stack for visible settings blocks */
body.mobile-mode .settings-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

/* Enlarge Dropdowns */
body.mobile-mode #settings-modal select {
    font-size: 36px !important;
    padding: 25px !important;
    height: 120px !important;
    background: #222 !important;
    border: 4px solid #555 !important;
    border-radius: 12px !important;
}

body.mobile-mode #settings-modal label, body.mobile-mode #settings-modal h3 {
    font-size: 40px !important;
    margin-bottom: 25px !important;
    font-weight: bold !important;
}

/* Hide Master Volume Box inside output */
body.mobile-mode #settings-modal .settings-grid > div:nth-child(4) > div {
    display: none !important;
}

/* Modal styling for mobile */
body.mobile-mode .modal-content {
    width: 95% !important;
    max-width: none !important;
    padding: 20px !important;
    border-radius: 15px !important;
}

body.mobile-mode .modal-header h2 {
    font-size: 36px !important;
}
/* --------------------------------------- */

/* Stack meters vertically */
body.mobile-mode .meters-wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow-y: auto !important;
    gap: 5px !important;
    background: #000;
}

body.mobile-mode #remote-meter-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px;
}

body.mobile-mode .meter-panel {
    border-right: none;
    border-bottom: 2px solid #333;
    min-height: 450px !important; /* Huge slots */
    padding: 20px !important;
    padding-top: 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Force horizontal canvas proportions */
body.mobile-mode canvas {
    min-height: 100px !important;
    height: 100px !important;
    max-height: 100px !important;
    border-radius: 8px;
}

/* Enlarge Local Headers */
body.mobile-mode .vu-header {
    height: 130px !important;
    overflow: visible !important;
}

body.mobile-mode .vu-label {
    font-size: 48px !important;
    font-weight: 900;
    pointer-events: none; /* Let clicks pass through to absolute buttons below */
}

body.mobile-mode .db-label {
    pointer-events: none;
}

body.mobile-mode .db-label {
    font-size: 42px !important;
    font-weight: bold !important;
}

/* Enlarge controls for touch */
body.mobile-mode .panel-volume-container {
    height: 70px !important;
    padding: 10px 20px;
    margin-top: 20px !important;
}

body.mobile-mode .mute-mini-btn {
    display: none !important; /* Hide remote mutes by default */
}

/* Show and Enlarge Local Mic Mute Button — carré net sur mobile */
body.mobile-mode #btn-mute-mic {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    width: 130px !important;
    height: 130px !important;
    font-size: 34px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
    text-align: center !important;
    border-radius: 0 !important;
    font-weight: bold !important;
    color: #fff !important;
    background-color: #4CAF50 !important; /* Vert ON AIR */
    border: none !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    min-width: auto !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
    z-index: 999 !important;
}

body.mobile-mode #btn-mute-mic.muted {
    background-color: #f44336 !important; /* Rouge OFF PGM */
}
/* Allow 2-line text in mobile mic button */
body.mobile-mode #btn-mute-mic br {
    display: block !important;
}

body.mobile-mode .rec-btn {
    font-size: 24px !important;
    font-weight: 900 !important;
    width: auto !important;
    padding: 0 35px !important;
    height: 60px !important;
    border-radius: 12px !important;
    background-color: #333 !important;
    color: #ef4444 !important;
    border: 2px solid #ef4444 !important;
}

body.mobile-mode #rec-timer {
    font-size: 18px !important;
}

body.mobile-mode .panel-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 30px;
    background: #050505;
    border: 2px solid #1a1a1a;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.8);
    border-radius: 15px;
    flex: 1;
}

body.mobile-mode .panel-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #2196F3 !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

body.mobile-mode .panel-volume-slider::-moz-range-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #2196F3 !important;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* Local Mic Slider - Red */
body.mobile-mode #gain-in::-webkit-slider-thumb {
    background: #F44336 !important;
}

body.mobile-mode #gain-in::-moz-range-thumb {
    background: #F44336 !important;
}

body.mobile-mode .status-indicator {
    font-size: 40px !important;
    padding: 15px 20px !important;
}

body.mobile-mode .mobile-massive-btn {
    font-size: 36px !important;
    padding: 35px !important;
}

body.mobile-mode .panel-volume-label {
    font-size: 32px !important;
    font-weight: bold !important;
    text-align: left;
}

/* Explicit text labels for volume percentages */
body.mobile-mode #gain-in-label::before {
    content: "MICRO : ";
    color: #F44336;
}

body.mobile-mode #remote-meter-panel .panel-volume-label::before {
    content: "SON : ";
    color: #2196F3;
}

/* Hide detailed stats to keep UI clean */
body.mobile-mode .peer-stats-container {
    display: none !important;
}

/* Enlarge emojis for mobile touch controls */
body.mobile-mode .panel-volume-container > span {
    font-size: 32px !important;
}

body.mobile-mode .vu-stats {
    display: none !important;
}

/* Massive Checkboxes for Mobile */
body.mobile-mode .checkbox-container {
    padding-left: 60px !important;
}

body.mobile-mode .checkmark {
    height: 40px !important;
    width: 40px !important;
    border-radius: 8px !important;
}

body.mobile-mode .checkbox-container .checkmark:after {
    left: 14px !important;
    top: 5px !important;
    width: 10px !important;
    height: 20px !important;
    border-width: 0 5px 5px 0 !important;
}

/* V3.1.28: Readable Mobile Modal Settings */
body.mobile-mode #settings-modal .volume-row {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas: 
        "label value"
        "slider slider" !important;
    gap: 15px !important;
    align-items: center !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

body.mobile-mode #settings-modal .volume-row label {
    grid-area: label !important;
    margin: 0 !important;
}

body.mobile-mode #settings-modal .volume-row input[type="range"] {
    grid-area: slider !important;
    width: 100% !important;
}

body.mobile-mode #settings-modal .volume-row > div,
body.mobile-mode #settings-modal .volume-row .value-label {
    grid-area: value !important;
    justify-self: end !important;
}

body.mobile-mode #settings-modal .volume-row > div {
    min-width: 250px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
}

body.mobile-mode #settings-modal .volume-row > div > div {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 100% !important;
    gap: 10px !important;
}

body.mobile-mode #settings-modal .value-label,
body.mobile-mode #settings-modal #jitter-buffer-label,
body.mobile-mode #settings-modal #tab-guard-label {
    font-size: 50px !important;
    font-weight: bold !important;
    color: #4CAF50 !important;
    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;
}

body.mobile-mode #settings-modal .label-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
}

body.mobile-mode #settings-modal .help-text-modal {
    font-size: 28px !important;
    color: #888 !important;
    display: block !important;
    margin-top: 10px !important;
}

body.mobile-mode #settings-modal .stereo-container-mobile {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-top: 15px !important;
}

body.mobile-mode #settings-modal button[id^="sync-"] {
    font-size: 24px !important;
    padding: 10px 20px !important;
    height: auto !important;
    transform: none !important;
    background-color: #2196F3 !important;
    color: white !important;
    border-radius: 8px !important;
    font-weight: bold !important;
}

body.mobile-mode #settings-modal #jitter-actual-label {
    font-size: 24px !important;
    margin-top: 5px !important;
    display: block !important;
    text-align: right !important;
}

/* Force hide elements on mobile even if they have volume-row grid styles */
body.mobile-mode #settings-modal .hide-on-mobile,
body.mobile-mode #settings-modal .volume-row.hide-on-mobile,
body.mobile-mode .hide-on-mobile {
    display: none !important;
}

