.fancy-title {
    font-family: 'Audiowide', cursive;
    font-weight: 400;
}

:root {
    --lux-text-size: 15px;
    --lux-output-size: calc(16px + 1pt);
    --lux-ui-size: 14px;
    /* Proportional sans for transcript body (readable, not narrow like mono) */
    --lux-output-font: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
    /* Mono only for status metrics and raw TextGrid file preview */
    --lux-mono-font: 'JetBrains Mono', ui-monospace, monospace;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--lux-text-size);
    background: linear-gradient(to bottom, #ffffff, #dbe4ff);
    overflow-x: hidden;  /* prevent side-scroll */
    color: #1a1a2e;
}

/* ── Layout aligned with LuxASR Live / Dual View ───────────────── */
.header-lux {
    padding: 14px 0 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.header-lux h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: 22px;
    color: #1a365d;
    margin: 0;
}
.header-lux .subtitle {
    font-size: var(--lux-ui-size);
    color: #666;
    margin-top: 2px;
}
.view-links { font-size: var(--lux-ui-size); }
.view-links a { color: #0057b7; text-decoration: none; }
.view-links a:hover { text-decoration: underline; }

.controls-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.btn-record-dual {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #0057b7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-record-dual:hover { background: #004494; color: #fff; }
.btn-record-dual.recording { background: #dc3545; }
.btn-record-dual.recording:hover { background: #b02a37; color: #fff; }

.btn-secondary-dual {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-secondary-dual:hover { background: #e8e8e8; color: #333; }
.btn-secondary-dual:disabled { opacity: 0.5; cursor: default; }
.btn-record-dual.w-100,
.btn-secondary-dual.w-100,
a.btn-record-dual.w-100 { width: 100%; }

.control-group {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--lux-ui-size);
    color: #555;
}
.control-group label.form-label {
    min-height: auto;
    margin-bottom: 0;
    font-size: var(--lux-ui-size);
    font-weight: 500;
    color: #555;
}
.options-bar {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 0 12px;
    margin-bottom: 4px;
}
.options-bar .control-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.options-bar .form-check.form-switch {
    height: auto;
    min-height: 0;
    padding-left: 2.25em;
    align-items: center;
}
.options-bar .form-check.form-switch .form-check-input {
    margin-left: -2.25em;
}

.options-bar .whisper-prompt-input {
    min-width: 16rem;
    width: 16rem;
    max-width: 100%;
    font-size: var(--lux-ui-size);
    font-family: inherit;
    padding: 7px 10px;
    border: 1px solid #adb5bd;
    border-radius: 8px;
    background-color: #fff;
    line-height: 1.5;
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.options-bar .whisper-prompt-input:hover {
    border-color: #0057b7;
    background-color: #f8fbff;
}
.options-bar .whisper-prompt-input:focus {
    outline: none;
    border-color: #0057b7;
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.2);
    background-color: #fff;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 7px 14px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: var(--lux-ui-size);
}
.status-row .status-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
}
.status-row .status-label { color: #888; }
.status-row .status-value {
    font-weight: 600;
    font-family: var(--lux-mono-font);
    color: #1a365d;
}

.text-panel {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}
.luxasr-user-warning {
    margin: 0 0 12px 0;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #f0c36d;
    background: #fff8e6;
    color: #664d03;
    font-size: var(--lux-ui-size);
    line-height: 1.45;
}

.text-panel-header {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f4ff;
    color: #1a365d;
}
.text-panel-toolbar {
    flex-shrink: 0;
    padding: 0 14px;
}
.text-panel-toolbar .interactive-hint {
    margin: 12px 0 0;
}
.text-panel-toolbar .playback-controls {
    margin: 8px 0 12px;
}
.transcript-scroll {
    flex: 1 1 auto;
    min-height: 120px;
    max-height: min(52vh, 520px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}
.transcript-scroll #transcription,
.transcript-scroll #transcription.colored-text,
.transcript-scroll .bilingual-transcript {
    display: block;
    width: 100%;
    min-height: 0;
    max-height: none;
    overflow: visible;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-family: var(--lux-output-font);
    font-size: var(--lux-output-size);
    line-height: 1.45;
    color: #1a1a2e;
    background: transparent;
}
.transcript-scroll #transcription.form-control {
    height: auto;
    min-height: 0;
    padding: 14px 16px;
}
/* SRT, VTT, MAXQDA, plain text — preserve line breaks */
.transcript-scroll #transcription.transcript-plain,
.transcript-scroll #transcription .transcript-plain-pre {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.transcript-scroll #transcription .transcript-plain-pre {
    margin: 0;
    padding: 0.75rem;
    font-family: var(--lux-output-font);
    font-size: var(--lux-output-size);
    line-height: 1.55;
    color: #212529;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}
/* Praat TextGrid file preview stays monospace (structure is column-aligned) */
.transcript-scroll #transcription .textgrid-preview {
    font-family: var(--lux-mono-font);
    font-size: 0.82rem;
    line-height: 1.35;
}
.text-panel-actions {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    padding: 12px 14px;
    border-top: 1px solid #e9ecef;
    background: #fafafa;
}

.intro-text {
    font-size: var(--lux-text-size);
    color: #444;
    line-height: 1.65;
}

.main-workspace {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}
.info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    font-size: var(--lux-text-size);
    line-height: 1.7;
    color: #444;
}
.info-card h3, .info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-top: 1.25rem;
}
.info-card h3:first-child, .info-card h4:first-child { margin-top: 0; }

#dropzone.bg-light,
#dropzone {
    border: 2px dashed #b6d4fe !important;
    border-radius: 10px !important;
    background: #f0f4ff !important;
}
.example-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
}
.example-button {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
}
.bilingual-col-header {
    background: #f0f4ff;
    color: #1a365d;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 12px;
}
.bilingual-col-header-target {
    background: #f0fff8;
    color: #1a4d3a;
}

h3 {
	font-weight: bold;
    font-size: 15px; /* Uniform size */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;  /* Centers content */
    flex-wrap: wrap; /* Allows wrapping on small screens */
    gap: 5px; /* Adds spacing between logo and text */
    text-align: center; /* Ensures text stays centered */
    padding: 10px 20px;
}

.header-container img {
    width: 100px; /* Adjust logo size */
    height: auto;
}

.header-container h1 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
}

#dropzone.bg-light {
  border-style: dashed;
  background: #e9f5ff !important;
}

/* 🌟 Example Buttons Section */
.example-section {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(0, 40, 85, 0.1);
    border-radius: 8px;
}

/* 🌟 Example Button Styling */
.example-button {
    background: #0057b7;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px; /* Increased for visibility */
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    white-space: nowrap;
    width: auto;
}

.example-button:hover {
    background: #004494;
}

label.form-label {
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-check.form-switch {
  display: flex;
  align-items: center;
  height: 38px; /* Same as Bootstrap input height */
}

/* Translation “Think” toggle: hide native checkbox; neutral pressed look when on */
.think-toggle-wrap {
  position: relative;
}
.think-toggle-wrap .btn-check {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#translation-think:checked + label {
  background-color: #e9ecef !important;
  border-color: #495057 !important;
  color: #212529 !important;
}
#translation-think:checked + label .lux-think-icon-img {
  filter: none;
  opacity: 1;
}
#translation-think + label .lux-think-icon-img {
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
  display: block;
  filter: grayscale(0.35) brightness(0.92);
  opacity: 0.9;
}

/* Submit row uses .controls-bar + dual buttons */

/* 🌟 Waveform and Transcription Styles */
#media-player-strip {
  display: none;
  margin-top: 12px;
  margin-bottom: 8px;
}

.waveform-area {
  width: 100%;
}

#waveform {
    display: none;
    width: 100%;
    height: 120px;
    margin-top: 0;
    background: #efefef;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Play + file info sit under the waveform (not beside it) */
.media-player-controls-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e9ecef;
}

.audio-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.25rem;
  row-gap: 0.25rem;
  flex: 1 1 200px;
  min-width: 0;
}

#play-pause-button {
  flex-shrink: 0;
}

/* Playback speed controls */
.playback-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.speed-label {
  font-size: 11px;
  color: #666;
  white-space: nowrap;
  min-width: 45px;
}

.speed-slider {
  flex: 1;
  min-width: 80px;
  max-width: 120px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.speed-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #0057b7;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.speed-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #0057b7;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.speed-value {
  font-size: 11px;
  color: #666;
  min-width: 30px;
  text-align: right;
}

/* SRT line length slider */
.srt-length-slider {
  flex: 1;
  min-width: 80px;
}

#srt-maxlen-value {
  min-width: 28px;
  font-weight: 500;
}

.transcript-scroll #transcription.colored-text,
.transcript-scroll .colored-text {
  padding: 14px 16px;
  font-family: var(--lux-output-font);
  font-size: var(--lux-output-size);
  line-height: 1.45;
}

#transcription-output-wrapper {
  width: 100%;
}

.description-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f8f9fa;
  padding: 30px;
  margin-top: 40px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.description-section h3, 
.description-section h4 {
  margin-top: 30px;
  font-weight: 600;
  color: #222;
}

.description-section pre {
  background-color: #eee;
  padding: 10px;
  border-radius: 6px;
  overflow-x: auto;
}


footer {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
    margin-top: 12px;
    background: transparent;
}
footer a { color: #0057b7; text-decoration: none; }
footer a:hover { text-decoration: underline; }

#diarization-toggle.form-check-input {
  width: 2rem;
  height: 1rem;
  margin-top: 0;
  cursor: pointer;
}

#diarization-toggle.form-check-input:checked {
  background-color: #0057b7;
  border-color: #0057b7;
}

#diarization-toggle.form-check-input:checked::before {
  transform: translateX(1rem);
}

/* 📱 Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stack logo and text */
        text-align: center;
    }

    .header-container h1 {
        font-size: 22px; /* Reduce size for smaller screens */
    }

    .example-section {
        justify-content: center;
        flex-wrap: wrap;
    }

  .controls-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .options-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .options-bar .control-group {
    width: 100%;
  }

  .options-bar .form-select,
  .options-bar .whisper-prompt-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .row > [class*='col-'] {
    margin-bottom: 4px !important;
  }

  label.form-label {
    margin-bottom: 2px;
  }

  .form-select, .form-control, .form-check-input {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .form-check.form-switch {
    margin-bottom: 4px;
  }

}

.status-info {
  font-size: 0.9rem;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.load-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #444;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

/* Status colors */
.load-light.green { background-color: #28a745; }     /* OK */
.load-light.yellow { background-color: #ffc107; }    /* Warning */
.load-light.red { background-color: #dc3545; }        /* heavy load */


/* Enriched Text Output Styles */
.colored-text {
    font-family: var(--lux-output-font);
    font-size: var(--lux-output-size);
    line-height: 1.45;
    padding-top: 0;
    padding-bottom: 10px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.bilingual-transcript .bilingual-segment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    align-items: start;
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.bilingual-transcript .bilingual-cell {
    min-width: 0;
}

/* Column titles above bilingual transcript (aligned with the two columns) */
.bilingual-transcript-column-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .bilingual-transcript-column-headers {
        grid-template-columns: 1fr;
    }
    .bilingual-transcript .bilingual-segment-row {
        grid-template-columns: 1fr;
    }
}

/* Interactive features hint */
.interactive-hint {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.interactive-hint i {
    font-size: 18px;
    color: #2196f3;
}

.interactive-hint .hint-text {
    flex: 1;
}

.interactive-hint .hint-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.interactive-hint .hint-close:hover {
    background: rgba(0,0,0,0.1);
}

.speaker-segment {
    margin-bottom: 10px;
}

/* Speaker / time metadata — smaller than transcript body */
.transcript-scroll .speaker-row,
.colored-text .speaker-row {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 2px;
    color: #666;
}
.transcript-scroll .speaker-label,
.colored-text .speaker-label {
    font-family: 'Poppins', sans-serif;
    font-size: inherit;
    font-weight: 600 !important;
    color: #555 !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.transcript-scroll .timecode,
.colored-text .timecode {
    font-family: 'Poppins', sans-serif;
    font-size: 10px !important;
    font-weight: 400 !important;
    color: #888 !important;
}
.transcript-scroll .text-row,
.colored-text .text-row {
    font-family: var(--lux-output-font);
    font-size: var(--lux-output-size);
    line-height: 1.45;
    color: #212529;
    margin-bottom: 6px;
}
.transcript-scroll .text-row .word,
.colored-text .text-row .word {
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
}

.speaker {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-right: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.word {
    display: inline-block;
    padding: 0 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.word:hover {
    opacity: 0.8;
    transform: scale(1.05);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Word hover effects only */
.word:hover {
    position: relative;
}

/* Confidence colours — keep visible inside mono output */
.transcript-scroll .word.low-confidence,
.colored-text .word.low-confidence,
.low-confidence {
    color: #c62828 !important;
    background: none;
}

.transcript-scroll .word.medium-confidence,
.colored-text .word.medium-confidence,
.medium-confidence {
    color: #bfa100 !important;
    background: none;
}

.transcript-scroll .word.default-text,
.colored-text .word.default-text,
.default-text {
    color: #5c6b7a !important;
    background: none;
}

/* Legend for confidence levels */
.confidence-legend {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-low {
    background-color: #c62828;
}

.legend-medium {
    background-color: #bfa100;
}

.legend-default {
    background-color: #888;
}

.text-row {
    font-weight: normal;
    margin-bottom: 0;
    padding-top: 0;
}

.speaker-break {
    height: 10px;
}

.sentence-group {
    display: inline;
    transition: background 0.2s;
    cursor: pointer;
}

/* Translation column: same segment timing for highlight sync, but not clickable */
.sentence-group.translation-sentence-sync {
    cursor: default;
}

.sentence-group.playing {
    color: #0057b7 !important;
    background: rgba(0, 87, 183, 0.08) !important;
    font-weight: bold;
    transition: color 0.2s, background 0.2s;
    border-radius: 3px;
}

/* Override per-word confidence colours while the sentence is active */
.sentence-group.playing .word,
.colored-text .sentence-group.playing .word,
.transcript-scroll .sentence-group.playing .word.default-text,
.transcript-scroll .sentence-group.playing .word.medium-confidence,
.transcript-scroll .sentence-group.playing .word.low-confidence {
    color: #0057b7 !important;
    font-weight: bold;
}

.word.playing-word {
    color: #003366 !important;
    background: rgba(0, 51, 102, 0.1) !important;
    font-weight: bold;
    transition: color 0.2s, background 0.2s;
}

.colored-text .word.playing-word,
.transcript-scroll .word.playing-word {
    color: #003366 !important;
    font-weight: bold;
}

/* Re-apply fonts after Bootstrap (Bootstrap overrides body font-family) */
body,
.intro-text,
.info-card,
.main-workspace {
    font-family: 'Poppins', sans-serif;
}
.transcript-scroll #transcription,
.transcript-scroll #transcription .transcript-plain-pre,
.colored-text,
.transcript-scroll .text-row {
    font-family: var(--lux-output-font);
}

/* Dropdown selects (after Bootstrap) — chevron + affordance */
select,
.form-select {
    font-size: var(--lux-ui-size);
    font-family: inherit;
    padding: 7px 2rem 7px 10px;
    border: 1px solid #adb5bd;
    border-radius: 8px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230057b7'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.55rem center;
    background-size: 14px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
select:hover,
.form-select:hover {
    border-color: #0057b7;
    background-color: #f8fbff;
}
select:focus,
.form-select:focus {
    outline: none;
    border-color: #0057b7;
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.2);
}
select:disabled,
.form-select:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    background-color: #e9ecef;
}
.options-bar .form-select {
    min-width: 7.5rem;
}
