/* Quick Suite - Custom Styles */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* Base Styles */
body {
  font-family: "Inter", sans-serif;
}

/* Mesh Background */
.mesh-bg {
  background-image: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(48, 43, 99, 0.8) 50%, rgba(36, 36, 62, 0.9) 100%), url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Glass Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glow Text */
.glow-text {
  text-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

/* Gradient Spinner */
.spinner-gradient {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #d946ef;
  border-right-color: #8b5cf6;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Collection Items (Group List) */
.collection-item {
  display: block;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.collection-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(217, 70, 239, 0.3);
}

.collection-item.active {
  background: linear-gradient(to right, rgba(192, 38, 211, 0.2), rgba(124, 58, 237, 0.2));
  border-color: #d946ef;
  color: #ffffff;
}

/* Disabled Button */
.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  z-index: 1000;
  animation: toast-in 0.3s ease-out;
  transition: opacity 0.3s, transform 0.3s;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
