:root {
  /* Color Palette */
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;

  --color-blue-50: #eff6ff;
  --color-blue-100: #dbeafe;
  --color-blue-200: #bfdbfe;
  --color-blue-600: #2563eb;
  --color-blue-700: #1d4ed8;

  --color-yellow-100: #fef3c7;
  --color-yellow-600: #ca8a04;

  --color-purple-100: #f3e8ff;
  --color-purple-400: #c026d3;
  --color-purple-600: #9333ea;
  --color-purple-700: #7e22ce;

  --color-green-100: #dcfce7;
  --color-green-400: #4ade80;
  --color-green-600: #16a34a;

  --color-orange-50: #fff7ed;
  --color-orange-100: #ffedd5;
  --color-orange-500: #f97316;
  --color-orange-700: #c2410c;

  --color-indigo-50: #eef2ff;
  --color-indigo-200: #c7d2fe;
  --color-indigo-600: #4f46e5;

  --color-red-50: #fef2f2;
  --color-red-100: #fee2e2;
  --color-red-500: #ef4444;
  --color-red-600: #dc2626;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.725rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

/* Increase base font size so 1rem = 18px instead of 16px */
html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-slate-50);
  color: var(--color-slate-800);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Utility Classes */
.ra-container {
  min-height: 100vh;
  padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
  .ra-container {
    padding: 2.5rem;
  }
}

.ra-max-w-4xl {
  max-width: 56rem;
  margin: 0 auto;
}

.ra-grid {
  display: grid;
  gap: var(--spacing-xl);
}

.ra-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .ra-col-span-8 {
    grid-column: span 8 / span 8;
  }

  .ra-col-span-4 {
    grid-column: span 4 / span 4;
  }
}

.ra-flex {
  display: flex;
}

.ra-flex-col {
  flex-direction: column;
}

.ra-items-center {
  align-items: center;
}

.ra-justify-between {
  justify-content: space-between;
}

.ra-gap-2 {
  gap: 0.5rem;
}

.ra-gap-3 {
  gap: 0.75rem;
}

.ra-gap-4 {
  gap: 1rem;
}

/* Header Styles */
.ra-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .ra-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ra-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ra-header-icon {
  background: linear-gradient(135deg, var(--color-blue-600), #1d4ed8);
  color: white;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px var(--color-blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ra-header-text h1 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-slate-900);
  letter-spacing: -0.025em;
}

.ra-header-text p {
  color: var(--color-slate-500);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.ra-header-actions {
  display: flex;
  gap: 0.75rem;
}

/* Button Styles */
.ra-btn {
  padding: 0.725rem 1.25rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.ra-btn-secondary {
  background: white;
  border: 1px solid var(--color-slate-200);
  color: var(--color-slate-700);
  box-shadow: var(--shadow-sm);
}

.ra-btn-secondary:hover {
  background: var(--color-slate-50);
}

.ra-btn-primary {
  background: var(--color-slate-900);
  color: white;
  box-shadow: 0 10px 25px var(--color-slate-200);
}

.ra-btn-primary:hover {
  transform: scale(1.02);
}

.ra-btn-primary:active {
  transform: scale(0.95);
}

.ra-btn-icon {
  padding: 0.5rem;
  border-radius: var(--radius-xl);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ra-btn-icon:hover {
  background: var(--color-slate-100);
}

/* Section Header */
.ra-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}

.ra-section-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-slate-400);
}

.ra-section-badge {
  font-size: 0.725rem;
  font-weight: 700;
  background: var(--color-slate-200);
  color: var(--color-slate-600);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

/* Empty State */
.ra-empty-state {
  background: white;
  border: 2px dashed var(--color-slate-200);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
}

.ra-empty-icon {
  width: 4rem;
  height: 4rem;
  background: var(--color-slate-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-slate-300);
}

.ra-empty-state h3 {
  font-weight: 700;
  color: var(--color-slate-400);
  margin-bottom: 0.25rem;
}

.ra-empty-state p {
  font-size: 0.875rem;
  color: var(--color-slate-400);
}

/* Requirement Card Custom Element */
requirement-card {
  display: block;
  margin-bottom: 1.5rem;
}

requirement-card:last-child {
  margin-bottom: 0;
}

/* Requirement Card */
.ra-requirement-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ra-requirement-card.ra-disabled {
  filter: grayscale(0.8);
  opacity: 0.8;
}

.ra-card-header {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.ra-card-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ra-card-icon {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ra-card-icon.ra-blue {
  background: var(--color-blue-50);
  color: var(--color-blue-600);
}
.ra-card-icon.ra-yellow {
  background: var(--color-yellow-100);
  color: var(--color-yellow-600);
}
.ra-card-icon.ra-purple {
  background: var(--color-purple-100);
  color: var(--color-purple-600);
}
.ra-card-icon.ra-green {
  background: var(--color-green-100);
  color: var(--color-green-600);
}
.ra-card-icon.ra-orange {
  background: var(--color-orange-100);
  color: var(--color-orange-500);
}
.ra-card-icon.ra-indigo {
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
}

.ra-card-text h3 {
  font-weight: 700;
  color: var(--color-slate-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.ra-card-key {
  font-size: 0.563rem;
  font-weight: 900;
  background: var(--color-slate-100);
  color: var(--color-slate-400);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.ra-card-text p {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  font-weight: 500;
  margin-bottom: 0;
}

.ra-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ra-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ra-toggle-btn.ra-active {
  color: var(--color-blue-600);
}

.ra-toggle-btn.ra-inactive {
  color: var(--color-slate-300);
}

.ra-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--color-slate-100);
  margin: 0 0.25rem;
}

.ra-btn-delete {
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: var(--color-slate-300);
  cursor: pointer;
  border-radius: var(--radius-xl);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ra-btn-delete:hover {
  background: var(--color-red-500);
  color: var(--color-red-50);
}

/* Card Content */
.ra-card-content {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--color-slate-50);
  margin-top: 1.25rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Elements */
.ra-form-group {
  margin-bottom: 1rem;
}

.ra-form-label {
  display: block;
  font-size: 0.725rem;
  font-weight: 900;
  color: var(--color-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.375rem;
}

.ra-form-input,
.ra-form-select {
  width: 100%;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-sans);
}

.ra-form-input:focus,
.ra-form-select:focus {
  border-color: var(--color-blue-600);
}

.ra-form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* Attribute Group Title */
.ra-attr-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-600);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
}

/* Checkbox Grid */
.ra-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}

.ra-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-slate-100);
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}

.ra-checkbox-label:hover {
  background: var(--color-slate-50);
  border-color: var(--color-slate-200);
}

.ra-checkbox-label.ra-checked {
  background: var(--color-blue-50);
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-sm);
}

.ra-checkbox-box {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-slate-300);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.ra-checkbox-label.ra-checked .ra-checkbox-box {
  background: var(--color-blue-600);
  border-color: var(--color-blue-600);
}

.ra-checkbox-text {
  flex: 1;
  flex-direction: column;
  display: flex;
}

.ra-checkbox-text-main {
  font-size: 0.688rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-slate-600);
}

.ra-checkbox-label.ra-checked .ra-checkbox-text-main {
  color: var(--color-blue-700);
}

.ra-checkbox-text-sub {
  font-size: 0.563rem;
  color: var(--color-slate-400);
  font-family: var(--font-mono);
  margin-top: 0.125rem;
}

/* Passcode Section */
.ra-passcode-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ra-passcode-input-wrapper {
  flex: 1;
  display: flex;
  background: var(--color-slate-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-slate-200);
  overflow: hidden;
  transition: border-color 0.2s;
}

.ra-passcode-input-wrapper:focus-within {
  border-color: var(--color-yellow-600);
}

.ra-passcode-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  /* text-transform: uppercase; */
  outline: none;
}

.ra-btn-generate {
  padding: 0 0.75rem;
  background: transparent;
  border: none;
  color: var(--color-orange-500);
  cursor: pointer;
  transition: background-color 0.2s;
}

.ra-btn-generate:hover {
  background: var(--color-orange-50);
}

.ra-btn-add {
  background: var(--color-slate-900);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.ra-btn-add:hover {
  transform: scale(1.05);
}

.ra-passcode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ra-passcode-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--color-slate-200);
  padding: 0.25rem 0.25rem 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.ra-passcode-tag span {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
}

.ra-btn-remove-tag {
  padding: 0.25rem;
  background: transparent;
  border: none;
  color: var(--color-slate-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.ra-btn-remove-tag:hover {
  color: var(--color-red-500);
}

/* Info Box */
.ra-info-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-orange-50);
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-orange-100);
}

.ra-info-box svg {
  color: var(--color-orange-500);
  flex-shrink: 0;
}

.ra-info-box p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-orange-700);
}

.ra-info-box strong {
  font-weight: 900;
}

/* Profile Toggle Buttons */
.ra-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.ra-profile-toggle {
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-slate-100);
  background: white;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.6;
}

.ra-profile-toggle.ra-active {
  background: var(--color-indigo-50);
  border-color: var(--color-indigo-200);
  opacity: 1;
}

.ra-profile-toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.ra-profile-toggle-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-indigo-600);
}

.ra-profile-toggle-text {
  font-size: 0.688rem;
  font-weight: 700;
  color: var(--color-slate-700);
}

/* Library Sidebar */
.ra-library-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-slate-200);
  padding: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.ra-library-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-bottom: 0.25rem;
}

.ra-library-item:last-child {
  margin-bottom: 0;
}

.ra-library-item:not(.ra-disabled):hover {
  background: var(--color-slate-50);
}

.ra-library-item.ra-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--color-slate-50);
}

.ra-library-item-icon {
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.ra-library-item:not(.ra-disabled):hover .ra-library-item-icon {
  transform: scale(1.1);
}

.ra-library-item-icon.ra-blue {
  background: var(--color-blue-50);
  color: var(--color-blue-600);
}
.ra-library-item-icon.ra-yellow {
  background: var(--color-yellow-100);
  color: var(--color-yellow-600);
}
.ra-library-item-icon.ra-purple {
  background: var(--color-purple-100);
  color: var(--color-purple-600);
}
.ra-library-item-icon.ra-green {
  background: var(--color-green-100);
  color: var(--color-green-600);
}
.ra-library-item-icon.ra-orange {
  background: var(--color-orange-100);
  color: var(--color-orange-500);
}
.ra-library-item-icon.ra-indigo {
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
}

.ra-library-item-text {
  flex: 1;
}

.ra-library-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-700);
}

.ra-library-item-desc {
  font-size: 0.725rem;
  color: var(--color-slate-400);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
}

/* JSON Preview */
.ra-json-preview {
  background: var(--color-slate-900);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
  display: none;
}

.ra-json-bg-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.1;
  color: white;
}

.ra-json-header {
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.ra-json-status-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #4ade80;
}

.ra-json-content {
  font-size: 0.725rem;
  color: #93c5fd;
  font-family: var(--font-mono);
  line-height: 1.6;
  height: 12rem;
  overflow: auto;
  position: relative;
  z-index: 1;
  background: inherit;
  border: none;
}

.ra-json-content::-webkit-scrollbar {
  display: none;
}

/* Skip Options */
.ra-skip-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-slate-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-slate-100);
}

@media (min-width: 640px) {
  .ra-skip-options {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ra-skip-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ra-toggle-switch {
  position: relative;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
}

.ra-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ra-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-slate-200);
  transition: 0.3s;
  border-radius: 9999px;
}

.ra-toggle-slider:before {
  position: absolute;
  content: '';
  height: 1.25rem;
  width: 1.25rem;
  left: 0.125rem;
  bottom: 0.125rem;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .ra-toggle-slider {
  background-color: var(--color-green-600);
}

input:checked + .ra-toggle-slider:before {
  transform: translateX(1.25rem);
}

.ra-skip-text {
  flex: 1;
}

.ra-skip-text-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-700);
  display: block;
}

.ra-skip-text-desc {
  font-size: 0.725rem;
  color: var(--color-slate-500);
}

.ra-skip-times {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ra-skip-times label {
  font-size: 0.725rem;
  font-weight: 900;
  color: var(--color-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ra-skip-times input {
  width: 5rem;
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
}

.ra-skip-times input:focus {
  border-color: var(--color-purple-600);
}

/* Ads Grid */
.ra-ads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ra-ads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ra-ads-skip-group {
  display: flex;
  gap: 1rem;
}

.ra-ads-skip-input {
  flex: 1;
}

.ra-ads-skip-checkbox {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.375rem;
}

.ra-ads-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.ra-ads-checkbox-box {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border: 2px solid var(--color-slate-300);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.ra-ads-checkbox-label:hover .ra-ads-checkbox-box {
  border-color: var(--color-slate-400);
}

.ra-ads-checkbox-label input:checked + .ra-ads-checkbox-box {
  background: var(--color-slate-900);
  border-color: var(--color-slate-900);
}

.ra-ads-checkbox-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-600);
}

/* SVG Icons */
.ra-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* alerts */
.ra-disabled-requirement {
  padding: 2px;
  background: var(--color-red-100);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  color: var(--color-red-600);
  font-size: 12px;
}

.ra-coming-soon-wrapper {
  position: relative;
  filter: grayscale(1);
}

.ra-coming-soon-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-weight: 500;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
  z-index: 10;
  text-transform: uppercase;
}

.ra-coming-soon-badge {
  color: rgb(54, 0, 0);
  font-weight: 500;
  font-size: 12px;
  background: rgba(255, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-md);
}

.ra-coming-soon-banner {
  padding: 2px;
  background: var(--color-yellow-100);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  color: var(--color-yellow-600);
  font-size: 12px;
}

.ra-help {
  margin-top: 1rem;
}

.ra-help-content {
  display: flex;
  align-items: center;
  gap: 01rem;
  padding: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .ra-grid-cols-12 > * {
    grid-column: span 12;
  }
}
