/* Service Cards */
.service-card {
  transition: all 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Status Badges */
.status-badge {
  display: inline-flex;           /* or flex */
  align-items: center;
  /*height: 2.25rem;                 same as button height */
  padding: 0 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.status-verified {
  background-color: #dcfce7;
  color: #166534;
}

.status-unverified {
  background-color: #fef3c7;
  color: #92400e;
}

/* Form Components */
.form-input {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ========================================
   PRIMARY BUTTON (Sharpened Infra Style)
   ======================================== */
/* Upgrade version for the future use 
.btn-primary {
  background-color: #1a73e8;          
  color: #ffffff;
  border: 1px solid #1a73e8;
  padding: 0.4rem 0.9rem;             
  border-radius: 0.375rem;           
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.15s ease,
              box-shadow 0.15s ease,
              transform 0.05s ease;
}

.btn-primary:hover {
  background-color: #1558b0;         
  border-color: #1558b0;
  box-shadow: 0 2px 6px rgba(26, 115, 232, 0.25);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary:disabled {
  background-color: #9ca3af;
  border-color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}
*/
/* ========================================
   SECONDARY BUTTON (Sharpened Infra Style)
   ======================================== */
/* Upgrade version for the future use 
.btn-secondary {
  background-color: #ffffff;
  color: #334155;                 
  border: 1px solid #d1d5db;      
  padding: 0.4rem 0.9rem;         
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.15s ease,
              border-color 0.15s ease,
              box-shadow 0.15s ease,
              transform 0.05s ease;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #f8fafc;      
  border-color: #94a3b8;          
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}

.btn-secondary:active {
  transform: translateY(1px);
}

.btn-secondary:focus {
  outline: 2px solid #1a73e8;    
  outline-offset: 2px;
}

.btn-secondary:disabled {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}
*/

/* Buttons */
.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #2563eb;
}

.btn-primary:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: #e0f2fe;         
  color: #0369a1;                    
  border: 1px solid #bae6fd;         
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #bae6fd;         
  color: #075985;                    
  border-color: #7dd3fc;             
}

.btn-secondary:focus {
  outline: 2px solid #0ea5e9;        
  outline-offset: 2px;
}


/* Tables */
.table-row:hover {
  background-color: #f8fafc;
}

/* Domain Header */
.domain-header {
  /*background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

/* Message Components */
/*
.message-success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.message-error {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.message-info {
  background-color: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.message-loading {
  background-color: #f3f4f6; 
  color: #374151;            
  border: 1px solid #d1d5db; 
}
*/
/* yellow version */
/*
.message-loading {
  background-color: #fef9c3; 
  color: #92400e;           
  border: 1px solid #fde68a;
}
*/

/* Config Cards */
.config-card {
  transition: all 0.2s ease;
}

.config-card:hover {
  /*transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);*/
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Code Blocks */
.code-block {
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
}

/**
 * DNSSEC-specific styles
 * Add to: /static/css/components.css
 */

/* DNSSEC Section */
.dnssec-section {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.section-header .subtitle {
  color: #64748b;
  font-size: 1.1rem;
}

/* Info Card */
.info-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.info-card p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.warning-box {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.warning-box strong {
  color: #92400e;
}

/* Domain Selector */
.domain-selector {
  margin-bottom: 2rem;
}

.domain-selector label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-select {
  width: 100%;
  max-width: 400px;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: white;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Status Card */
.status-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

/* Status Display */
.status-display {
  margin-bottom: 2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.status-badge.status-disabled {
  background: #f3f4f6;
  color: #6b7280;
}

.status-badge.status-signed, 
.status-badge.status-signed_unpublished {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.status-published {
  background: #dcfce7;
  color: #166534;
}

.status-badge.status-error {
  background: #fef2f2;
  color: #dc2626;
}

/* DNSSEC Details */
.dnssec-details {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.dnssec-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-item label {
  font-weight: 500;
  color: #6b7280;
}

.detail-item span {
  font-weight: 500;
  color: #111827;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: #2563eb;
}

.btn-danger {
  background: #dc2626;
  color: white;
}

.btn-danger:hover:not(:disabled) {
  background: #b91c1c;
}
/*
.btn-secondary {
  background: #6b7280;
  color: white;
}

.btn-secondary:hover:not(:disabled) {
  background: #4b5563;
}
*/
.btn-outline {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-outline:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
}

.btn-success {
  background: #16a34a !important;
  color: white !important;
}

/* DS Records Display */
.ds-records {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.ds-records h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.ds-records p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.code-block {
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  width: 100%;
  min-height: 100px;
  resize: vertical;
  margin-bottom: 1rem;
  border: none;
}

.code-block:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dnssec-section {
    padding: 0 1rem;
  }
  
  .status-card {
    padding: 1rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* Loading States
.loading-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
 */

/* Animations */
.status-card {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus and Accessibility */
.btn:focus,
.form-select:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.status-badge {
  border: 2px solid transparent;
}

.status-badge:focus {
  border-color: #3b82f6;
  outline: none;
}

/* 
 * DNSSEC CSS Updates - Add these to components.css
 * These are ONLY the new/updated styles for the enhanced DNSSEC UI
 */

/* Update existing .status-badge to support new DNSSEC statuses */
.status-badge.enabled,
.status-badge.published {
  background: #dcfce7;
  color: #166534;
  border: 2px solid #bbf7d0;
}

.status-badge.enabling {
  background: #fef3c7;
  color: #92400e;
  border: 2px solid #fde68a;
}

.status-badge.disabling {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fecaca;
}

.status-badge.disabled {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border: 2px solid #e2e8f0 !important;
}

.status-badge.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fecaca;
}

.status-badge.loading {
  background: #f1f5f9;
  color: #475569;
  border: 2px solid #e2e8f0;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Override detail-grid to be exactly 2-column layout (label | value) with 3 rows */
.dnssec-details .detail-grid {
  display: block; /* Remove grid layout */
}

.dnssec-details .detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.dnssec-details .detail-item:last-child {
  border-bottom: none;
}

/* Ensure consistent spacing and typography */
.dnssec-details .detail-item label {
  font-weight: 500;
  color: #6b7280;
}

.dnssec-details .detail-item span {
  font-weight: 500;
  color: #111827;
}

/* Add this to your CSS file (base.css or components.css) */

/* Proxy Toggle Styles */
.proxy-toggle-track {
  /* Ensure consistent vertical alignment */
  vertical-align: middle;
  display: inline-block;
}

.proxy-toggle:disabled + .proxy-toggle-track {
  opacity: 0.5;
  cursor: not-allowed;
  /* Keep the same vertical position when disabled */
  vertical-align: middle;
  position: relative;
  top: 0; /* Prevent any downward shift */
}

.proxy-toggle:disabled + .proxy-toggle-track::after {
  /* Ensure the thumb stays in the correct position when disabled */
  transform: translateX(0) !important;
  transition: none !important;
}

.proxy-toggle:checked:disabled + .proxy-toggle-track::after {
  /* Keep thumb on the left when disabled, even if checked */
  transform: translateX(0) !important;
}

/* Better visual feedback for disabled state */
.proxy-toggle:disabled + .proxy-toggle-track {
  background-color: #e5e7eb !important; /* gray-200 */
}

.proxy-toggle:disabled ~ span {
  color: #6b7280; /* gray-500 for disabled text */
}

/* Fix for the flex container alignment */
.proxy-toggle + .proxy-toggle-track {
  margin-top: 0;
  margin-bottom: 0;
}

/* ===================================================================
   ADD TO components.css - Enhanced Nameserver Verification Status
   ================================================================= */

/* Enhanced styles for the nameserver verification status */
#nameserverVerificationStatus {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #0ea5e9;
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
}

.onboarding-progress-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

#onboardingProgressIcon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /*background: rgba(59, 130, 246, 0.1);*/
  background: transparent;
  transition: all 0.4s ease;
}

#onboardingProgressIcon.success {
  background: rgba(34, 197, 94, 0.1);
}

#onboardingProgressIcon.error {
  background: rgba(239, 68, 68, 0.1);
}

#onboardingProgressIconDNSM {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /*background: rgba(59, 130, 246, 0.1);*/
  background: transparent;
  transition: all 0.4s ease;
}

#onboardingProgressIconDNSM.success {
  background: rgba(34, 197, 94, 0.1);
}

#onboardingProgressIconDNSM.error {
  background: rgba(239, 68, 68, 0.1);
}

.progress-content {
  flex: 1;
  min-width: 0;
}

#onboardingProgressText {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

#onboardingProgressTextDNSM {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.progress-bar-container {
  background: rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  height: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

#onboardingProgressBar {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  height: 100%;
  border-radius: 8px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#onboardingProgressBar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShimmer 2s infinite;
}

#onboardingProgressBar.success {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

#onboardingProgressBar.error {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

@keyframes progressShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* dns-management.html */
#onboardingProgressBarDNSM {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  height: 100%;
  border-radius: 8px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#onboardingProgressBarDNSM::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShimmer 2s infinite;
}

#onboardingProgressBarDNSM.success {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

#onboardingProgressBarDNSM.error {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.progress-percentage {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  text-align: right;
}

.status-details {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 8px;
}

/* Pulse animation for loading states 
.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { 
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.2);
    transform: scale(1.01);
  }
}
*/
/* Success state styling */
#nameserverVerificationStatus.success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

/* Error state styling */
#nameserverVerificationStatus.error {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

/* Enhanced loading spinner */
.loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(59, 130, 246, 0.2);
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Icon animations */
.icon-fade-in {
  animation: iconFadeIn 0.5s ease-out;
}

@keyframes iconFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add these styles to your components.css file */

/* ========================================
   ENHANCED TOAST MESSAGE STYLES
   ======================================== */

/* Toast container with backdrop blur and slide animation */
.toast-container {
  backdrop-filter: blur(8px);
  border-radius: 12px;
  animation: slideIn 0.3s ease-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Enhanced message type styles with gradients */
/*
.message-success {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  border: 1px solid #bbf7d0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.message-error {
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
  color: #dc2626;
  border: 1px solid #fecaca;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.message-info {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.message-loading {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #475569;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 12px rgba(71, 85, 105, 0.1);
}

.message-warning {
  background: #fffbeb; 
  color: #92400e;
  border: 1px solid #fde68a;
  box-shadow: 0 4px 12px rgba(146, 64, 14, 0.1);
}
*/
/* New options */
.message-success {
  background: #f0fdf4; 
  color: #166534;
  border: 1px solid #bbf7d0;
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.1);
}

.message-error {
  background: #fef2f2; 
  color: #b91c1c;
  border: 1px solid #fecaca;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.1);
}

.message-info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.1);
}

.message-loading {
  background: #f8fafc; 
  color: #475569;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 12px rgba(71, 85, 105, 0.05);
}

.message-warning {
  background: #fffbeb; 
  color: #92400e;
  border: 1px solid #fde68a;
  box-shadow: 0 4px 12px rgba(146, 64, 14, 0.1);
}


/* ========================================
   STYLISH SPINNER STYLES
   ======================================== */

/* Spinner Type 1: Classic rotating spinner */
.toast-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

/* Spinner Type 2: Three bouncing dots */
.toast-spinner-dots {
  display: flex;
  gap: 2px;
  align-items: center;
}

.toast-spinner-dots span {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite;
}

.toast-spinner-dots span:nth-child(1) { animation-delay: -0.32s; }
.toast-spinner-dots span:nth-child(2) { animation-delay: -0.16s; }
.toast-spinner-dots span:nth-child(3) { animation-delay: 0s; }

/* Spinner Type 3: Pulsing circle */
.toast-spinner-pulse {
  width: 16px;
  height: 16px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  opacity: 0.7;
}

/* Spinner Type 4: Ripple effect */
.toast-spinner-ripple {
  position: relative;
  width: 16px;
  height: 16px;
}

.toast-spinner-ripple div {
  position: absolute;
  border: 2px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.toast-spinner-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

/* ========================================
   SPINNER ANIMATIONS
   ======================================== */
/*
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
*/
@keyframes dotPulse {
  0%, 80%, 100% { 
    transform: scale(0.8); 
    opacity: 0.5; 
  }
  40% { 
    transform: scale(1); 
    opacity: 1; 
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(0.8); 
    opacity: 0.5; 
  }
  50% { 
    transform: scale(1.2); 
    opacity: 1; 
  }
}

@keyframes ripple {
  0% { 
    top: 6px; 
    left: 6px; 
    width: 0; 
    height: 0; 
    opacity: 1; 
  }
  100% { 
    top: -1px; 
    left: -1px; 
    width: 14px; 
    height: 14px; 
    opacity: 0; 
  }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 640px) {
  .toast-container {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

/* ========================================
   ACCESSIBILITY & INTERACTION
   ======================================== */

.toast-container button:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 4px;
}

.toast-container button:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .toast-spinner,
  .toast-spinner-dots span,
  .toast-spinner-pulse,
  .toast-spinner-ripple div {
    animation-duration: 2s;
  }
  
  .toast-container {
    animation: none;
  }
}

/* Add these styles to components.css for Domain Management Modal */

/* ========================================
   DOMAIN MANAGEMENT MODAL STYLES
   ======================================== */

/* Modal container with backdrop blur */
#domainManagementModal {
  /*backdrop-filter: blur(4px);*/
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Modal content with slide-in animation */
#domainManagementModal .bg-white {
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  0% { 
    transform: translateY(20px); 
    opacity: 0; 
  }
  100% { 
    transform: translateY(0); 
    opacity: 1; 
  }
}

/* Domain list container */
#domainManagementList {
  max-height: 300px; /* Limit height for scrolling */
}

/* Individual domain row styling */
#domainManagementList .bg-slate-50 {
  transition: all 0.2s ease;
}

#domainManagementList .bg-slate-50:hover {
  background-color: #f1f5f9;
  /*transform: translateX(2px);*/
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Delete button styling */
#domainManagementList button {
  transition: all 0.2s ease;
}
/*
#domainManagementList button:hover {
  transform: scale(1.05);
}
*/
/* Add domain input styling */
#newDomainInput {
  transition: all 0.2s ease;
}

#newDomainInput:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Add domain button styling */
#addDomainBtn {
  transition: all 0.2s ease;
}

#addDomainBtn:hover:not(:disabled) {
  /*transform: translateY(-1px);*/
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

#addDomainBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Status indicator (green dot) */
.w-2.h-2.bg-green-500 {
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

/* Loading state for domains */
.loading-shimmer-domain {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-domain 1.5s infinite;
}

@keyframes shimmer-domain {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  #domainManagementModal .max-w-md {
    max-width: calc(100vw - 2rem);
  }
  
  #domainManagementModal .p-6 {
    padding: 1rem;
  }
  
  #domainManagementList .flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  #domainManagementList button {
    align-self: flex-end;
  }
}

/* Focus trap for accessibility */
#domainManagementModal:focus-within {
  outline: none;
}

/* Close button hover effect 
#domainManagementModal .text-slate-400:hover {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
*/
/* Error state styling */
.text-red-500 {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* Empty state icon animation */
#domainManagementList svg {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* Add these styles to components.css for Modern Confirmation Modal */

/* ========================================
   CONFIRMATION MODAL STYLES (z-100)
   ======================================== */

/* Modal backdrop with enhanced blur */
#confirmationModal {
  /*backdrop-filter: blur(6px);*/
  animation: confirmationFadeIn 0.25s ease-out;
}

@keyframes confirmationFadeIn {
  0% { 
    opacity: 0; 
    backdrop-filter: blur(0px);
  }
  100% { 
    opacity: 1; 
    backdrop-filter: blur(6px);
  }
}

/* Modal content with dramatic entrance */
#confirmationModal .bg-white {
  animation: confirmationSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@keyframes confirmationSlideIn {
  0% { 
    transform: scale(0.95) translateY(-10px); 
    opacity: 0; 
  }
  100% { 
    transform: scale(1) translateY(0); 
    opacity: 1; 
  }
}

/* Warning icon animation */
#confirmationModal .bg-red-100 {
  animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.1);
  }
}

/* Confirmation button hover effects */
#confirmationConfirmBtn {
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

#confirmationConfirmBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

#confirmationConfirmBtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.4);
}

/* Loading state for confirmation button */
#confirmationConfirmBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#confirmationConfirmBtn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: confirmationSpin 1s linear infinite;
}

#confirmationConfirmBtn.loading {
  color: transparent;
}

@keyframes confirmationSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Cancel button styling */
#confirmationCancelBtn {
  transition: all 0.2s ease;
}

#confirmationCancelBtn:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
}

/* Details section styling */
#confirmationDetails {
  border-left: 4px solid #ef4444;
  transition: all 0.2s ease;
}

#confirmationDetails:hover {
  background-color: #f1f5f9;
}

/* Detail list items */
#confirmationDetailsList li {
  position: relative;
  padding-left: 1rem;
}

#confirmationDetailsList li::before {
  content: '•';
  color: #ef4444;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Warning section animation */
.bg-amber-50 {
  animation: warningGlow 3s ease-in-out infinite;
}

@keyframes warningGlow {
  0%, 100% { 
    background-color: #fffbeb;
  }
  50% { 
    background-color: #fef3c7;
  }
}

/* Responsive design */
@media (max-width: 480px) {
  #confirmationModal .max-w-md {
    max-width: calc(100vw - 2rem);
    margin: 1rem;
  }
  
  #confirmationModal .p-6 {
    padding: 1rem;
  }
  
  /* Fix for button layout on mobile */
  #confirmationModal .px-6.py-4.bg-slate-50.flex.justify-end {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  #confirmationConfirmBtn,
  #confirmationCancelBtn {
    width: 100%;
    justify-content: center;
  }
}

/* Focus states for accessibility */
#confirmationConfirmBtn:focus,
#confirmationCancelBtn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

#confirmationConfirmBtn:focus {
  box-shadow: 0 0 0 2px #fecaca, 0 0 0 4px #ef4444;
}

#confirmationCancelBtn:focus {
  box-shadow: 0 0 0 2px #e2e8f0, 0 0 0 4px #64748b;
}

/* Enhanced backdrop blur for supported browsers */
@supports (backdrop-filter: blur(6px)) {
  #confirmationModal {
    background-color: rgba(15, 23, 42, 0.6);
  }
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(6px)) {
  #confirmationModal {
    background-color: rgba(15, 23, 42, 0.8);
  }
}

/* Add these styles to components.css for Universal Delete Confirmation Modal */

/* ========================================
   UNIVERSAL DELETE CONFIRMATION MODAL
   ======================================== */

/* Modal backdrop with enhanced blur */
#deleteConfirmationModal {
  /*backdrop-filter: blur(6px);*/
  animation: deleteModalFadeIn 0.25s ease-out;
}

@keyframes deleteModalFadeIn {
  0% { 
    opacity: 0; 
    backdrop-filter: blur(0px);
  }
  100% { 
    opacity: 1; 
    backdrop-filter: blur(6px);
  }
}

/* Modal content with dramatic entrance */
#deleteConfirmationModal .bg-white {
  animation: deleteModalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@keyframes deleteModalSlideIn {
  0% { 
    transform: scale(0.95) translateY(-10px); 
    opacity: 0; 
  }
  100% { 
    transform: scale(1) translateY(0); 
    opacity: 1; 
  }
}

/* Dynamic header backgrounds for different danger levels */
#deleteConfirmationModal .bg-blue-50 {
  background-color: #eff6ff;
}

#deleteConfirmationModal .bg-yellow-50 {
  background-color: #fefce8;
}

#deleteConfirmationModal .bg-red-50 {
  background-color: #fef2f2;
}

/* Icon containers with pulsing animation */
#deleteModalIcon {
  animation: deleteIconPulse 2s ease-in-out infinite;
}

@keyframes deleteIconPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Icon background colors */
#deleteConfirmationModal .bg-blue-100 {
  background-color: #dbeafe;
}

#deleteConfirmationModal .bg-yellow-100 {
  background-color: #fef3c7;
}

#deleteConfirmationModal .bg-red-100 {
  background-color: #fee2e2;
}

/* Icon colors */
#deleteConfirmationModal .text-blue-600 {
  color: #2563eb;
}

#deleteConfirmationModal .text-yellow-600 {
  color: #d97706;
}

#deleteConfirmationModal .text-red-600 {
  color: #dc2626;
}

/* Item details section */
#deleteModalDetails {
  border-left: 4px solid #ef4444;
  transition: all 0.2s ease;
}

#deleteModalDetails:hover {
  background-color: #f8fafc;
}

/* Consequences list styling */
#deleteModalConsequences {
  border-left: 4px solid #f59e0b;
}

#deleteModalConsequencesList li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

#deleteModalConsequencesList li span:first-child {
  color: #ef4444;
  font-weight: bold;
  margin-top: 0.125rem;
}

/* Warning section backgrounds */
#deleteConfirmationModal .bg-blue-50.border-blue-200 {
  background-color: #eff6ff;
  border-color: #93c5fd;
}

#deleteConfirmationModal .bg-yellow-50.border-yellow-200 {
  background-color: #fefce8;
  border-color: #fde68a;
}

#deleteConfirmationModal .bg-red-50.border-red-200 {
  background-color: #fef2f2;
  border-color: #fecaca;
}

/* Dynamic button styles for different danger levels */
#deleteModalConfirmBtn {
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

#deleteModalConfirmBtn:hover {
  transform: translateY(-1px);
}

#deleteModalConfirmBtn:active {
  transform: translateY(0);
}

/* Blue button (low danger) */
#deleteModalConfirmBtn.bg-blue-600 {
  background-color: #2563eb;
}

#deleteModalConfirmBtn.bg-blue-600:hover {
  background-color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Yellow button (medium danger) */
#deleteModalConfirmBtn.bg-yellow-600 {
  background-color: #d97706;
}

#deleteModalConfirmBtn.bg-yellow-600:hover {
  background-color: #b45309;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

/* Red button (high danger) */
#deleteModalConfirmBtn.bg-red-600 {
  background-color: #dc2626;
}

#deleteModalConfirmBtn.bg-red-600:hover {
  background-color: #b91c1c;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Loading state for confirm button */
#deleteModalConfirmBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

#deleteModalConfirmBtn.loading {
  pointer-events: none;
}

/* Cancel button styling */
#deleteModalCancelBtn {
  transition: all 0.2s ease;
}

#deleteModalCancelBtn:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
}

/* Responsive design */
@media (max-width: 480px) {
  #deleteConfirmationModal .max-w-md {
    max-width: calc(100vw - 2rem);
    margin: 1rem;
  }
  
  #deleteConfirmationModal .p-6 {
    padding: 1rem;
  }
  
  /* Stack buttons vertically on mobile */
  #deleteConfirmationModal .px-6.py-4.bg-slate-50.flex.justify-end {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  #deleteModalConfirmBtn,
  #deleteModalCancelBtn {
    width: 100%;
    justify-content: center;
  }
}

/* Focus states for accessibility */
#deleteModalConfirmBtn:focus,
#deleteModalCancelBtn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

#deleteModalConfirmBtn.bg-blue-600:focus {
  box-shadow: 0 0 0 2px #dbeafe, 0 0 0 4px #2563eb;
}

#deleteModalConfirmBtn.bg-yellow-600:focus {
  box-shadow: 0 0 0 2px #fef3c7, 0 0 0 4px #d97706;
}

#deleteModalConfirmBtn.bg-red-600:focus {
  box-shadow: 0 0 0 2px #fee2e2, 0 0 0 4px #dc2626;
}

#deleteModalCancelBtn:focus {
  box-shadow: 0 0 0 2px #e2e8f0, 0 0 0 4px #64748b;
}

/* Enhanced backdrop blur for supported browsers */
@supports (backdrop-filter: blur(6px)) {
  #deleteConfirmationModal {
    background-color: rgba(15, 23, 42, 0.6);
  }
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(6px)) {
  #deleteConfirmationModal {
    background-color: rgba(15, 23, 42, 0.8);
  }
}

/* Loading spinner animation for confirm button */
#deleteModalConfirmBtn .animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   BILLING SECTION STYLES
   ======================================== */

/* Billing section container */
.billing-section {
  animation: fadeIn 0.3s ease-out;
}

/* Plan overview card */
.plan-overview-card {
  transition: all 0.2s ease;
}

.plan-overview-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Usage overview card */
.usage-overview-card {
  transition: all 0.2s ease;
}

.usage-overview-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Usage progress bars */
.usage-progress-bar {
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Plan comparison cards */
.plan-comparison-card {
  transition: all 0.2s ease;
  position: relative;
}

.plan-comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Popular plan highlight */
.plan-comparison-card.popular {
  border-width: 2px;
  border-color: #3b82f6;
}

/* Usage alerts */
.billing-alert {
  animation: slideIn 0.3s ease-out;
}

.billing-alert.critical {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: 0.8; 
  }
}

/* Chart container */
.usage-chart-container {
  position: relative;
  height: 256px; /* h-64 equivalent */
}

/* Loading states */
.billing-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
  .billing-section {
    padding: 0 1rem;
  }
  
  .plan-comparison-card {
    margin-bottom: 1rem;
  }
  
  .usage-chart-container {
    height: 200px;
  }
}

/* Upgrade modal */
.upgrade-modal {
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease-out;
}

.upgrade-modal .bg-white {
  animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInUp {
  0% { 
    transform: scale(0.95) translateY(-10px); 
    opacity: 0; 
  }
  100% { 
    transform: scale(1) translateY(0); 
    opacity: 1; 
  }
}

/* Feature list styling in modal */
.upgrade-features-list {
  max-height: 200px;
  overflow-y: auto;
}

.upgrade-features-list::-webkit-scrollbar {
  width: 4px;
}

.upgrade-features-list::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.upgrade-features-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

/* Status badges */
.status-badge.active {
  background-color: #dcfce7;
  color: #166534;
}

.status-badge.limited {
  background-color: #fef2f2;
  color: #dc2626;
}

.status-badge.warning {
  background-color: #fef3c7;
  color: #92400e;
}

.status-badge.approaching {
  background-color: #dbeafe;
  color: #1d4ed8;
}

/* Usage percentage colors */
.usage-critical {
  color: #dc2626 !important;
}

.usage-warning {
  color: #d97706 !important;
}

.usage-normal {
  color: #059669 !important;
}

/* Table styles for domain breakdown */
.domain-breakdown-table {
  font-size: 0.875rem;
}

.domain-breakdown-table th {
  font-weight: 500;
  color: #64748b;
  padding: 0.5rem 0;
}

.domain-breakdown-table td {
  padding: 0.5rem 0;
  border-top: 1px solid #f1f5f9;
}

.domain-breakdown-table tbody tr:hover {
  background-color: #f8fafc;
}

/* Button loading states */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-loading span {
  visibility: hidden;
}

/* Accessibility improvements */
.billing-section button:focus,
.billing-section select:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.billing-section .nav-item:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Dark mode support (if needed later) 
@media (prefers-color-scheme: dark) {
  .billing-section {
    
  }
}
*/
/* Print styles */
@media print {
  .billing-section {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  
  .plan-comparison-card,
  .usage-overview-card,
  .plan-overview-card {
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }
  
  .upgrade-modal {
    display: none;
  }
}

#confirmationConfirmBtn.loading {
  color: white !important;
}

.shine-text {
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
  background-size: 200% 100%;

  /* Compatibility fix: add standard property */
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: shine 2s infinite linear;
}


@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shine-metallic {
  position: relative;
  display: inline-block;
  color: #3b82f6; /* Tailwind's text-blue-500 as fallback */
}

/* Add a pseudo-element to overlay the metallic shine */
.shine-metallic::before {
  content: 'DNS'; /* 👈 keep this matching the actual text */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: metallic-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes metallic-shimmer {
  0% {
    background-position: -200% center;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    background-position: 200% center;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    background-position: 200% center;
    opacity: 0;
  }
}
