/* Hero Headers */
.hero-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
}

.hero-header h1,
.hero-header h2,
.hero-header h3 {
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
}

.hero-title {
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
  margin-bottom: 1rem;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
}

.bg-gradient-success {
  background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%) !important;
}

/* Large Icons */
.icon-large {
  font-size: 2.5rem;
}

.icon-xlarge {
  font-size: 3rem;
}

.icon-xxlarge {
  font-size: 4rem;
}

/* Text Colors for Light Backgrounds */
.text-on-light {
  color: var(--text-muted);
}

/* Hidden Elements */
.d-none {
  display: none !important;
}

/* Clickable Elements */
.clickable-code {
  cursor: pointer;
  text-decoration: underline;
}

/* Custom Borders */
.border-0 {
  border: none !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

/* Spacing Utilities */
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* Input Group Adjustments */
.input-group-compact {
  width: 100px;
}

.input-group-compact .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.input-group-compact .form-control {
  padding: 0.25rem;
  font-size: 0.8rem;
}

.input-group-compact .fas {
  font-size: 0.65rem;
}

/* Card Improvements */
.card-borderless {
  border: none;
}

.card-rounded {
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
}

/* Text Centering */
.text-center {
  text-align: center !important;
}

/* Email Specific Styles */
.email-center {
  text-align: center;
  margin: 30px 0;
}

/* Geolocation Status */
.geolocation-status {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: none;
}

/* Warning Boxes */
.warning-box {
  display: none;
}

.warning-box.alert {
  display: block;
} 