/*
 * (C) Dr. Jonathan Ingram 2025. All rights reserved.
 * 
 * File: styles.css
 * System: BEAM
 * 
 * This file is part of the BEAM system.
 * Unauthorized copying of this file, via any medium, is strictly prohibited.
 * Unauthorized use, including but not limited to teaching, training, or fine-tuning
 * any artificial intelligence system; reverse engineering; analysis; reproduction;
 * or the creation of derivative or functionally similar systems, is strictly prohibited.
 */

/* Backgrounds Menu Styles */

/* Additional styles for Backgrounds Manager can be added here */
#backgrounds-window {
  /* Window-specific styles already handled in JavaScript */
}

/* Background preview thumbnails */
#backgrounds-window .background-thumbnail {
  width: 100%;
  height: 60px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#backgrounds-window .background-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Range slider custom styles */
#backgrounds-window input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

#backgrounds-window input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #66aaff;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#backgrounds-window input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #66aaff;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Custom scrollbar for backgrounds lists */
#backgrounds-window .content::-webkit-scrollbar {
  width: 6px;
}

#backgrounds-window .content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

#backgrounds-window .content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

#backgrounds-window .content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}