/* Configuration Panel Overhaul */

/* General Section Styling */
.config-section {
  transition: all 0.3s ease-in-out;
}

.config-section-title {
  /* Shimmer effect can be applied here if desired via JS or if it's always the same text */
}

.form-group {
  /* Common spacing for form groups if needed, handled by space-y in HTML for now */
}

/* Intensity Slider Enhancements */
#intensity-slider {
  height: 20px; /* Make thumb easier to grab */
}
#intensity-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--color-textColor);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.1s ease-in-out;
}
#intensity-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--color-textColor);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.1s ease-in-out;
}
#intensity-slider:active::-webkit-slider-thumb,
#intensity-slider:focus::-webkit-slider-thumb {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--color-primary-rgb, 139, 0, 0, 0.3);
}
#intensity-slider:active::-moz-range-thumb,
#intensity-slider:focus::-moz-range-thumb {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--color-primary-rgb, 139, 0, 0, 0.3);
}


/* Screen Layout Options */
.layout-option-container input[type="radio"]:checked + .layout-option {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.5);
  transform: translateY(-2px);
}
.layout-option {
  transition: all 0.2s ease-in-out;
}
.layout-option:hover {
  border-color: var(--color-accent);
}

/* Media Type Checkboxes */
.media-checkbox-container input[type="checkbox"]:checked + .custom-checkbox {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.4);
  background-color: rgba(var(--color-primary-rgb), 0.1);
}
.media-checkbox-container .custom-checkbox {
  border: 2px solid transparent;
}
.media-checkbox-container .custom-checkbox .check-indicator {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease-in-out;
}
.media-checkbox-container input[type="checkbox"]:checked + .custom-checkbox .check-indicator {
  opacity: 1;
  transform: scale(1);
}

/* Tag Input and Display (Blacklist/Whitelist) */
#blacklist-tag-input, #whitelist-tag-input {
  /* Using Tailwind classes for focus, but can add more here if needed */
}

#user-blacklist-display, #user-whitelist-display {
  /* Using Tailwind classes, but can add scrollbar styling here */
}
#user-blacklist-display::-webkit-scrollbar,
#user-whitelist-display::-webkit-scrollbar {
  width: 6px;
}
#user-blacklist-display::-webkit-scrollbar-thumb,
#user-whitelist-display::-webkit-scrollbar-thumb {
  background-color: var(--color-accent);
  border-radius: 3px;
}
#user-blacklist-display::-webkit-scrollbar-track,
#user-whitelist-display::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0.2);
  border-radius: 3px;
}

/* Suggestions Container for Tags */
.suggestions-container {
  position: relative; /* For absolute positioning of the list */
}
.suggestions-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 2px); /* Position directly below the input's container */
  z-index: 100;
  max-height: 150px;
  overflow-y: auto;
  background-color: #2c2f48; /* Darker than emergency, but distinct */
  border: 1px solid var(--color-accent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.suggestion-item {
  padding: 10px 15px;
  color: var(--color-textColor);
  cursor: pointer;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(var(--color-accent-rgb, 201, 173, 167), 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.15s ease;
}
.suggestion-item:last-child {
  border-bottom: none;
}
.suggestion-item:hover, .suggestion-item.active {
  background-color: rgba(var(--color-primary-rgb), 0.3);
}
.suggestion-item-count {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-left: 10px;
}


/* Start Session Button */
#start-session.glow-effect { /* Tailwind's glow-effect might be sufficient */
  /* Custom glow if needed */
}

/* Responsive adjustments for the config panel itself if necessary */
@media (max-width: 768px) {
  #config-panel {
    /* padding: 1rem; already handled by responsive.css or inline tailwind */
  }
  .config-section-title {
    font-size: 1.25rem; /* text-xl */
  }
  .form-group label {
    font-size: 1rem; /* text-base */
  }
  #start-session {
    font-size: 1.125rem; /* text-lg */
    padding: 0.75rem 2rem;
  }
} 