/* Weekend boost toggle - simpler design */
.weekend-boost-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    display: flex;
    align-items: center;
    font-size: 12px;
  }
  
  /* Actual checkbox styling */
  .weekend-boost-toggle input[type="checkbox"] {
    margin-right: 4px;
    cursor: pointer;
  }
  
  /* Label styling */
  .weekend-boost-toggle label {
    cursor: pointer;
    user-select: none;
    color: #666;
  }
  
  /* Boost indicator */
  .boost-indicator {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
  }
  
  /* Boosted card styling - more subtle */
  .driver-mini-card.weekend-boosted,
  .part-mini-card.weekend-boosted {
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.5);
  }
  
  /* Boosted stat styling */
  .mini-stat-value.boosted {
    color: #e74c3c !important;
    font-weight: bold;
  }
  
  /* Boosted components summary */
  .boosted-components-summary {
    margin-top: 12px;
    padding: 10px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(231, 76, 60, 0.2);
  }
  
  .boosted-components-summary h4 {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #e74c3c;
  }
  
  .boosted-components-list {
    margin: 0;
    padding-left: 20px;
    font-size: 12px;
  }
  
  .boosted-components-list li {
    margin-bottom: 3px;
  }
  
  /* Dark mode adjustments */
  .dark-mode .weekend-boost-toggle label {
    color: #aaa;
  }
  
  .dark-mode .boost-indicator {
    background-color: #ff5144;
  }
  
  .dark-mode .driver-mini-card.weekend-boosted,
  .dark-mode .part-mini-card.weekend-boosted {
    box-shadow: 0 0 0 2px rgba(255, 81, 68, 0.5);
  }
  
  .dark-mode .mini-stat-value.boosted {
    color: #ff5144 !important;
  }
  
  .dark-mode .boosted-components-summary {
    background-color: rgba(255, 81, 68, 0.1);
    border-color: rgba(255, 81, 68, 0.2);
  }
  
  .dark-mode .boosted-components-summary h4 {
    color: #ff5144;
  }