/**
 * STAGE BUTTONS UNIFIED STYLES
 * Overrides button colors to use unified cyan theme
 * Created: 2026-01-06
 *
 * This file ensures all selection buttons use the same cyan color (#00aaff)
 * across all stage templates for visual consistency.
 */

/* ============================================
   BUTTON COLOR STANDARDIZATION
   All selection buttons now use CYAN as primary color
   ============================================ */

/* Tier 1: Large Selection Buttons (btn-totem-selection2) */
.btn-totem-selection2 {
  background-color: #00aaff !important;
  color: #dee5e9 !important;
  font-size: 2.3rem;
  margin-bottom: 1.8rem;
  height: 8.7rem;
}

.btn-totem-selection2:hover {
  background-color: #607d8b !important;  /* Blue-gray on hover */
  color: #ffffff !important;
}

/* Tier 2: Medium Selection Buttons (btn-totem-selection3) */
.btn-totem-selection3 {
  background-color: #00aaff !important;  /* Changed from #607d8b to #00aaff */
  color: #dee5e9 !important;
  font-size: 2rem;
  margin-bottom: 1.3rem;
  height: 7rem;
}

.btn-totem-selection3:hover {
  background-color: #607d8b !important;  /* Blue-gray on hover */
  color: #ffffff !important;
}

/* Tier 3: Small Selection Buttons (btn-totem-multioption) */
.btn-totem-multioption {
  background-color: #00aaff !important;  /* Changed from #607d8b to #00aaff */
  color: #dee5e9 !important;
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
  height: 4.7rem;
}

.btn-totem-multioption:hover {
  background-color: #607d8b !important;  /* Blue-gray on hover */
  color: #ffffff !important;
}

/* Base Selection Button (btn-totem-selection) */
.btn-totem-selection {
  background-color: #00aaff !important;  /* Changed from #607d8b to #00aaff */
  color: #dee5e9 !important;
}

.btn-totem-selection:hover {
  background-color: #607d8b !important;  /* Blue-gray on hover */
  color: #ffffff !important;
}

/* Material Blue-grey override for stage buttons */
.btn-material-bluegrey.stage-option,
.btn-totem-multioption.btn-material-bluegrey {
  background-color: #00aaff !important;  /* Unified cyan */
}

.btn-material-bluegrey.stage-option:hover,
.btn-totem-multioption.btn-material-bluegrey:hover {
  background-color: #607d8b !important;  /* Blue-gray on hover */
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Mobile */
@media (max-width: 768px) {
  .btn-totem-selection2 {
    font-size: 1.8rem !important;
    height: 6rem !important;
    margin-bottom: 1.2rem !important;
  }

  .btn-totem-selection3 {
    font-size: 1.6rem !important;
    height: 5.5rem !important;
    margin-bottom: 1rem !important;
  }

  .btn-totem-multioption {
    font-size: 1.4rem !important;
    height: 3.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .btn-totem-selection2 {
    font-size: 2rem !important;
    height: 7.5rem !important;
  }

  .btn-totem-selection3 {
    font-size: 1.8rem !important;
    height: 6rem !important;
  }
}

/* ============================================
   KEYBOARD BUTTONS STANDARDIZATION
   ============================================ */

/* Standard keyboard buttons - UNIFIED TO CYAN */
.btn-keyboard {
  background-color: #00aaff !important;
  color: #ffffff !important;
  width: 80px;
  height: 80px;
  font-size: 2.1rem;
  border-radius: 50%;
  font-weight: 600;
}

.btn-keyboard:hover {
  background-color: #607d8b !important;
  transform: scale(1.05);
}

.btn-keyboard-ok {
  background-color: #dee5e9 !important;
  color: #00aaff !important;
  width: 80px;
  height: 80px;
  font-size: 2.1rem;
  border-radius: 50%;
  font-weight: 600;
}

.btn-keyboard-ok:hover {
  background-color: #00aaff !important;
  color: #ffffff !important;
  transform: scale(1.05);
}

/* Override for dni.html custom keyboard buttons - UNIFIED TO CYAN */
.btn-keyboard-sg {
  background-color: #00aaff !important;
  color: #ffffff !important;
  width: 70px;
  height: 70px;
  font-size: 2.1rem;
}

.btn-keyboard-sg-ok {
  background-color: #dee5e9 !important;
  color: #00aaff !important;
  width: 70px;
  height: 70px;
  font-size: 2.1rem;
}

.btn-keyboard-sg:hover {
  background-color: #607d8b !important;
}

.btn-keyboard-sg-ok:hover {
  background-color: #00aaff !important;
  color: #ffffff !important;
}
