/* utilities.css */
.toggle-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 8px 0;
  }
  
  .toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
  }
  
  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
    border-radius: 11px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  }
  
  .toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
  }
  
  .toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(18px);
  }
  
  .toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--primary-color);
  }
  
  .toggle-label {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
  }
  
  .toggle-switch:hover .toggle-slider:before {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }