/* 
 * Decision Page Styles
 * 
 * Brand-specific styles only. Bootstrap handles most layout, spacing, and components.
 * Use Bootstrap utilities wherever possible.
 */

/* Decision page container - brand gradient background */
.decision-page-container {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
}

/* Decision card - brand-specific backdrop blur */
.decision-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.decision-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

.decision-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

/* Timer display - brand-specific styling */
.timer-display {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.timer-display.warning {
  color: #ff4444;
  text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

/* Decision buttons - brand-specific gradients */
.decision-btn {
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.decision-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.decision-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.decision-btn-match {
  background: linear-gradient(45deg, #4caf50 30%, #66bb6a 90%);
}

.decision-btn-match:hover:not(:disabled) {
  background: linear-gradient(45deg, #388e3c 30%, #4caf50 90%);
  color: white;
}

.decision-btn-pass {
  background: linear-gradient(45deg, #f44336 30%, #e57373 90%);
}

.decision-btn-pass:hover:not(:disabled) {
  background: linear-gradient(45deg, #d32f2f 30%, #f44336 90%);
  color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .decision-title {
    font-size: 1.75rem;
  }

  .decision-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .decision-card {
    padding: 1rem !important;
  }

  .decision-title {
    font-size: 1.5rem;
  }

  .decision-subtitle {
    font-size: 0.875rem;
  }
}
