/* ===== 2-COLUMN TOOLBAR WITH SVG ICONS ===== */

/* Main Toolbar Container */
#broadcast-toolbar {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid #111;
  border-radius: 0;
  padding: 6px;
  color: #111;
  z-index: 2000;
  touch-action: none;
  user-select: none;
  cursor: grab;
  backdrop-filter: blur(3px);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Toolbar-height separator with 6px padding from edges */
#broadcast-toolbar::after {
  content: '';
  position: absolute;
  left: 113px; /* Approximate column boundary: 6px + 101px (left column width) + 6px */
  top: 6px;    /* 6px from toolbar top */
  bottom: 6px; /* 6px from toolbar bottom */
  width: 1px;
  background: rgba(17, 17, 17, 0.3);
  pointer-events: none;
}

#broadcast-toolbar.icons-loaded {
  opacity: 1;
}

/* 2-Column Table Layout */
.toolbar-table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

.icons-cell {
  vertical-align: top;
  width: auto;
  padding: 0 6px 0 0;
  margin: 0;
}

/* REMOVE spacing from ALL elements */
.icons-cell .toolbar-section {
  margin: 0 !important;
  padding: 0 !important;
}

.locations-cell .toolbar-section {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove default button margins */
.tool-btn {
  margin: 0 !important;
}

.location-btn {
  margin: 0 !important;
}

.media-btn {
  margin: 0 !important;
}

/* Remove any spacing from the first section */
.icons-cell .toolbar-section:first-child {
  margin-top: 0;
  padding-top: 0;
}

/* Remove any spacing from the last section */
.icons-cell .toolbar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.locations-cell {
  vertical-align: top;
  width: auto;
  padding: 0 0 0 8px;
  margin: 0;
  margin-top: -6px;
}

#broadcast-toolbar:active {
  cursor: grabbing;
}

/* Toolbar Sections - no gap to avoid interference with separator spacing */
.toolbar-section {
  display: flex;
  flex-direction: column;
  gap: 0px; /* Remove gap - separators handle spacing */
  margin-bottom: 0;
  align-items: flex-start;
}

/* Add top spacing to categories starting from 2nd one - more specific targeting */
.icons-cell .toolbar-section:not(:first-child) {
  margin-top: 0px !important; /* Remove gaps - lines handle spacing */
}

/* Last section in each column - remove any extra bottom spacing */
.toolbar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}



/* Section separator line - FIXED width and height for ALL */
.section-separator {
  height: 1px !important;
  width: 101px !important; /* Match left column full button width */
  background: rgba(17, 17, 17, 0.3) !important;
  margin: 5.7px 0 !important; /* Keep 5.7px for left column */
  display: block !important;
  border: none !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Right column separators - adjust margins for inherited grid gap */
.locations-cell .section-separator,
.single-column-grid .section-separator {
  width: 42px !important; /* Match right column button width */
  margin: 4px 0 !important; /* 4px + 2px gap = 6px total for right column */  
}

/* Divider between quick-slot scenes and media: only when at least one scene slot is shown */
.single-column-grid:not(.has-toolbar-scenes) > .section-separator {
  display: none !important;
}

/* Ensure first section in each column aligns */
.toolbar-section:first-child {
  margin-top: 0;
  padding-top: 0;
}

/* Tool Grid - 2x2 layout */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  max-width: 120px;
  align-self: flex-start;
  margin: 0;
  padding: 0;
}

/* Single Column Grid - better button spacing */
.single-column-grid {
  display: flex;
  flex-direction: column;
  gap: 2px; /* 2px spacing for location buttons */
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

/* Align single-column label/emoji with left column (not slot grid — that needs real height or media row overlaps). */
.single-column-grid > :first-child:not(button):not(.tool-row):not(.location-slot-buttons) {
  line-height: 18px;
  height: 18px;
  font-size: 18px;
  margin-bottom: 3px;
  margin-top: 0;
  display: block;
}

.single-column-grid .tool-row {
  align-self: flex-start;
}

.single-column-grid > button,
.single-column-grid .tool-row > button {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  box-sizing: border-box;
}

/* Override for location buttons in single column */
.single-column-grid > button.location-btn,
.single-column-grid .tool-row > button.location-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
}

/* Override for media buttons in single column */
.single-column-grid > button.media-btn,
.single-column-grid .tool-row > button.media-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
}

/* Location Buttons */
.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 2px; /* Reduce gap to match other elements */
  margin: 0;
  padding: 0;
}

/* Media Buttons */
.media-buttons {
  display: flex;
  flex-direction: column;
  gap: 2px; /* Reduce gap to match other elements */
  margin: 0;
  padding: 0;
}

/* Expandable/sub-button systems removed for clean minimalist design */

.tool-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0; /* Remove bottom margin */
}

/* Single column tool-row - vertical stacking */
.single-column-grid .tool-row {
  display: flex;
  flex-direction: column;
  gap: 2px; /* 2px spacing for media buttons */
  align-items: center;
  margin: 0; /* Ensure no margin */
}

/* Button Styles */
.tool-btn {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid #111;
  border-radius: 0;
  color: #111;
  font-family: 'Al Jazeera', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0.08);
}

/* Legacy preset toolbar button (if present): same touch behavior as Scene */
#pm-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0.08);
}

/* SVG Button Styles */
.svg-btn {
  padding: 2px;
}

.svg-btn svg {
  width: 36px !important;
  height: 36px !important;
  fill: currentColor;
  stroke: none;
  pointer-events: none;
  transition: transform 0.15s ease-out;
}

/* Clear/Delete button - red color */
#clear-all {
  color: #dc2626 !important; /* Red text color - SVG inherits via currentColor */
}

#clear-all.active {
  color: #fff !important; /* Keep white when active/pressed */
  background: rgba(220, 38, 38, 0.95) !important; /* Red background when active */
}

#clear-all svg {
  fill: #dc2626 !important; /* Red color for delete/clear button */
}

#clear-all .icon svg {
  fill: #dc2626 !important; /* Red color for delete/clear button - more specific selector */
}

/* Icon container styling */
.tool-btn .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-btn .icon svg {
  width: 36px !important;
  height: 36px !important;
  stroke: none;
  fill: currentColor;
}

.tool-btn:disabled {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(17, 17, 17, 0.5);
  color: rgba(17, 17, 17, 0.6);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Container for dynamic preset/slot buttons: two columns of 6 each (1–6 left, 7–12 right) */
.location-slot-buttons {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: flex-start;
  flex-shrink: 0;
}
.location-slot-buttons .location-slot-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.location-btn {
  width: 42px;
  height: 42px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  border: 1.5px solid #111;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Al Jazeera', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 42px;
  transition: transform 0.15s ease-out;
}

/* Preset slot buttons: full names in small type to fit; original 42x42 button, no expansion */
.location-slot-buttons .location-btn {
  font-size: 9px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Override tool-btn sizing for location buttons (non-slot) specifically */
.tool-btn.location-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
}

/* Home button: same look as preset/location buttons (42x42, border, background) */
.tool-btn.home-btn,
#home-base-map.tool-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  padding: 6px;
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  border: 1.5px solid #111;
  border-radius: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-btn.home-btn svg,
#home-base-map.tool-btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor;
}
.tool-btn.home-btn:active,
#home-base-map.tool-btn:active {
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  transform: scale(0.9);
}
.tool-btn.home-btn.active,
#home-base-map.tool-btn.active {
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
}

/* Override tool-btn sizing for media buttons - fixed 42x42px like location buttons */
.tool-btn.media-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
}

/* Media button styling - fixed 42x42px like location buttons */
.media-btn {
  width: 42px;
  height: 42px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  border: 1.5px solid #111;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Al Jazeera', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 42px;
  transition: transform 0.15s ease-out;
}

/* Close media button sizing - fixed 42x42px */
#close-media {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  padding: 6px !important;
  font-size: 14px !important;
}

/* Complex sub-button styles removed for minimalist design */

/* Remove hover effects for touch interface - use only active states */
.tool-btn:active {
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  transform: scale(0.9);
}

.tool-btn.active {
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
}

.location-btn:active {
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  transform: scale(0.9);
}

.location-btn.active,
.location-btn.loc-btn--active {
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
}

/* Animations removed for minimalist design */

/* ===== COLOR PICKER CONTAINER ===== */

/* Color Picker Container - positioned to the left of toolbar */
.color-picker-container {
  position: absolute;
  top: 30px; /* Will be updated by JavaScript */
  left: 29px; /* Will be updated by JavaScript to be 1px left of toolbar */
  z-index: 2001; /* Above toolbar */
  transform: translateX(0);
  transition: transform 0.1s ease-out;
  touch-action: none;
  user-select: none;
  pointer-events: auto;
}

/* Color Picker Panel - follows toolbar section pattern */
.color-picker-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 5px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid #111;
  border-radius: 0;
  padding: 6px;
  backdrop-filter: blur(3px);
  opacity: 1;
}

/* Color Grid - single column layout for separate panel */
.color-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: flex-start;
}

/* Color Buttons - Default transparent state */
.color-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #222;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  background-size: cover;
  background-position: center;
  opacity: 0.45; /* Reduced from 0.5 to 0.35 (35% opacity) */
}

/* Selected color state - FULL OPAQUE */
.color-btn.selected {
  border-width: 1px;
  border-color: #000;
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  opacity: 1.0; /* FULL OPAQUE - currently selected color */
}

/* Color specific styling */
.color-btn[data-color="#ff0000"] {
  background-color: #ff0000 !important;
}

.color-btn[data-color="#0066ff"] {
  background-color: #a8c9fc !important;
  border: 3px dashed #0066ff !important;
}

.color-btn[data-color="#00cc00"] {
  background-color: #00cc00 !important;
}

/* ===== FLAG PICKER CONTAINER ===== */

/* Flag Picker Container - positioned to the left of toolbar */
.flag-picker-container {
  position: absolute;
  top: 30px; /* Will be updated by JavaScript */
  left: 29px; /* Will be updated by JavaScript to be 1px left of toolbar */
  z-index: 2001; /* Above toolbar */
  transform: translateX(0);
  transition: transform 0.1s ease-out;
  touch-action: none;
  user-select: none;
  pointer-events: auto;
}

/* Flag Picker Panel - follows toolbar section pattern */
.flag-picker-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 5px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid #111;
  border-radius: 0;
  padding: 6px;
  backdrop-filter: blur(3px);
  opacity: 1;
}

/* Flag Grid - single column layout for separate panel */
.flag-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: flex-start;
}

/* Flag Buttons - Default state */
.flag-btn {
  width: 30px;
  height: 30px;
  border: 0.5px solid #333; /* Thinner border */
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.45; /* Reduced opacity for unselected state */
  font-size: 22px; /* Larger emoji size for better visibility */
  line-height: 1; /* Eliminate line-height spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* Backup centering */
  background-color: rgba(255, 255, 255, 0.1);
  font-family: "Twemoji Country Flags", 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif; /* Flag polyfill + emoji support */
}

/* Selected flag state - BLACK BACKGROUND */
.flag-btn.selected {
  border-width: 1px;
  border-color: #000;
  background-color: #000; /* Black background for active state */
  color: white; /* Ensure emoji/text stays visible on black */
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  opacity: 1.0; /* FULL OPAQUE - currently selected flag */
}

/* ===== RADAR PICKER CONTAINER ===== */

/* Radar Picker Container - positioned to the left of toolbar */
.radar-picker-container {
  position: absolute;
  top: 30px; /* Will be updated by JavaScript */
  left: 29px; /* Will be updated by JavaScript to be 1px left of toolbar */
  z-index: 2001; /* Above toolbar */
  transform: translateX(0);
  transition: transform 0.1s ease-out;
  touch-action: none;
  user-select: none;
  pointer-events: auto;
}

/* Radar Picker Panel - follows toolbar section pattern */
.radar-picker-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 5px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid #111;
  border-radius: 0;
  padding: 6px;
  backdrop-filter: blur(3px);
  opacity: 1;
}

/* Radar Grid - single column layout for separate panel */
.radar-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: flex-start;
}

/* Radar Buttons - Ring style with center dot */
.radar-btn {
  width: 30px;
  height: 30px;
  border: none; /* Remove outline */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  background: transparent; /* Transparent background */
  opacity: 0.3; /* More dimmed for unselected state */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Center dot for all radar buttons */
.radar-btn::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: inherit;
}

/* Green radar button - ring style */
#radar-green {
  border: 3px solid #00cc00; /* Green ring */
  background: transparent;
}

#radar-green::before {
  background-color: #00cc00; /* Green center dot */
}

/* Red radar button - ring style */
#radar-red {
  border: 3px solid #cc0000; /* Red ring */
  background: transparent;
}

#radar-red::before {
  background-color: #cc0000; /* Red center dot */
}

/* Selected radar state */
.radar-btn.selected {
  transform: scale(1.15); /* Slightly larger when selected */
  opacity: 1.0; /* FULL OPAQUE - currently selected radar */
  border-width: 4px; /* Thicker ring when selected */
}

/* Hover effect for unselected buttons */
.radar-btn:not(.selected):hover {
  opacity: 0.6;
  transform: scale(1.05);
}

/* ===== VESSEL PICKER CONTAINER ===== */
.vessel-picker-container {
  position: absolute;
  top: 30px;
  left: 29px;
  z-index: 2001;
  transform: translateX(0);
  transition: transform 0.1s ease-out;
  touch-action: none;
  user-select: none;
  pointer-events: auto;
}

.vessel-picker-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 5px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid #111;
  border-radius: 0;
  padding: 6px;
  backdrop-filter: blur(3px);
  opacity: 1;
}

.vessel-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: flex-start;
}

.vessel-btn {
  width: 30px;
  height: 30px;
  border: 0.5px solid #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  opacity: 0.45;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 22px 22px !important;
  background-color: rgba(255, 255, 255, 0.12);
}

#vessel-war {
  background-image: url('../../assets/onmap_assets/4_pathanimmarkers/4_vessels/1_war_vessel.webp');
}

#vessel-oil {
  background-image: url('../../assets/onmap_assets/4_pathanimmarkers/4_vessels/2_oil_vessel.webp');
}

.vessel-btn.selected {
  border-width: 1px;
  border-color: #000;
  background-color: #000;
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.vessel-btn:not(.selected):hover {
  opacity: 0.62;
  transform: scale(1.04);
}

/* ===== ZOOM CONTROLS CONTAINER ===== */

/* Zoom Controls Container - positioned at bottom-left of toolbar */
.zoom-controls-container {
  position: absolute;
  top: 18px; /* Will be updated by JavaScript to align with toolbar bottom */
  left: 29px; /* Will be updated by JavaScript to be 1px left of toolbar */
  z-index: 2001; /* Above toolbar */
  transform: translateX(0);
  transition: transform 0.1s ease-out;
  touch-action: none;
  user-select: none;
  pointer-events: auto;
  display: block;
  /* Hidden until updateZoomControlsPosition() runs (async init used to paint wrong placeholder top/left). */
  visibility: hidden;
}
/* Scene + Preset strip: positioned with zoom; hidden until JS sets coordinates */
#settings-controls {
  visibility: hidden;
  display: block !important;
}

/* Zoom Controls Panel - follows toolbar section pattern */
.zoom-controls-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 5px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid #111;
  border-radius: 0;
  padding: 6px;
  backdrop-filter: blur(3px);
  opacity: 1;
}

/* Zoom Grid - single column layout */
.zoom-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: flex-start;
}

/* Zoom Buttons - Match tool buttons exactly */
.zoom-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid #111;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  text-shadow: none;
  line-height: 1;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

/* Zoom button hover state for mouse users */
.zoom-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #333;
  transform: scale(1.05);
}

/* Zoom button active states - smooth press animation */
.zoom-btn:active,
.zoom-btn.touch-pressed {
  transform: scale(0.95);
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  transition: all 0.1s ease-out;
}

/* Settings strip: Scene + Preset Manager (above zoom) */
.zoom-color-divider {
  width: 100%;
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
  margin: 3px 0;
  flex-shrink: 0;
}
.zoom-btn.label-settings-btn {
  width: 100%;
  min-width: 36px;
  height: 32px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
#scene-panel-btn.label-settings-btn {
  background: rgba(0, 180, 120, 0.85);
  border-color: #00b078;
  color: #fff;
}
#scene-panel-btn.label-settings-btn:hover {
  background: rgba(0, 200, 140, 0.95);
  border-color: #00d090;
}
#scene-panel-btn.label-settings-btn:active,
#scene-panel-btn.pm-active {
  background: rgba(0, 150, 100, 0.95);
  color: #fff;
}
.scene-btn-text {
  letter-spacing: 0.04em;
}

