/* AuthenticationManager Styles */

/* Premium Required Dialog */
.premium-required-dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}


.premium-dialog-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.premium-dialog-content h3 {
  color: #667eea;
  margin-top: 0;
  font-size: 1.5em;
}

.premium-dialog-content ul {
  text-align: left;
  margin: 1rem 0;
}

.premium-dialog-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.premium-upgrade-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 10px;
}

.premium-cancel-btn {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

/* Premium Welcome Message */
.premium-welcome-message div {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin: 1rem 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: opacity 0.3s ease;
}

.premium-welcome-message h4 {
  margin: 0 0 0.5rem 0;
}

.premium-welcome-message p {
  margin: 0;
  opacity: 0.9;
}

.premium-welcome-message small {
  opacity: 0.9;
}