/* Container around the radio items */
.mode-toggle-container {
    display: inline-flex;
    border: 2px solid #7f0019;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;       
  }
  
  /* Hide the native radio circle */
  .mode-toggle-container input.mode-toggle-input {
    display: none;
  }
  
  /* Default (unchecked) labels: maroon bg, white text */
  .mode-toggle-container label.mode-toggle-label {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-align: center;
    user-select: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  /* Checked label: white bg, black text */
  .mode-toggle-container label.mode-toggle-label:has(input:checked) {
    background-color: #7f0019;
    color: #fff;
  }
  