/**
 * Support Container Styles
 * Consolidated styles for the support container component used across all pages
 * Last Updated: 2025-10-17
 */

/* Fixed Support Container - Horizontal Layout with Button Beside Gear Icon */
.support-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  z-index: 1000;
}

/* Report Button - Positioned Beside Gear Icon */
.report-problem-btn {
  background: #000000;
  color: #ffee00 !important;
  border: 2px solid #ffee00;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: bold;
  font-family: "Montserrat", Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 238, 0, 0.2);
  letter-spacing: 1px;
  white-space: nowrap;
}

.report-problem-btn:hover {
  background: #ffee00;
  color: #000000 !important;
  border-color: #28a745;
  box-shadow: 0 6px 20px rgba(255, 238, 0, 0.5);
  transform: scale(1.05);
}

/* Floating Gear Icon - Positioned Beside Button with Yellow Glow */
.floating-gear-icon {
  width: 50px;
  height: 50px;
  background: #ffee00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 12px rgba(255, 238, 0, 0.4),
    0 0 20px rgba(255, 238, 0, 0.6),
    0 0 40px rgba(255, 238, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  border: 2px solid #ffee00;
}

.floating-gear-icon:hover {
  background: #fff700;
  transform: scale(1.1) rotate(90deg);
  box-shadow:
    0 6px 20px rgba(255, 238, 0, 0.6),
    0 0 30px rgba(255, 238, 0, 0.8),
    0 0 60px rgba(255, 238, 0, 0.5);
}

.floating-gear-icon i {
  font-size: 20px;
  color: #000000;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-gear-icon:hover i {
  color: #333333;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .support-container {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }

  .report-problem-btn {
    padding: 10px 16px;
    font-size: 11px;
  }

  .floating-gear-icon {
    width: 45px;
    height: 45px;
  }

  .floating-gear-icon i {
    font-size: 18px;
  }
}
