/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light Theme Colors */
  --primary-color: #667eea;
  --primary-dark: #5a67d8;
  --secondary-color: #764ba2;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #3b82f6;

  /* Light Theme Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;

  /* Light Theme Text */
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-tertiary: #718096;

  /* Border and Shadow */
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* 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.75rem;
  --radius-xl: 1rem;
}

/* Dark Theme */
body.dark-theme {
  --bg-primary: #1a202c;
  --bg-secondary: #2d3748;
  --bg-tertiary: #4a5568;
  --bg-card: #2d3748;

  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-tertiary: #a0aec0;

  --border-color: #4a5568;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Switch/Slider Components */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
  transition: all 0.3s ease;
  border-radius: 24px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: linear-gradient(135deg, #ffffff, #f7fafc);
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

input:checked + .slider {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

input:focus + .slider {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

input:checked + .slider:before {
  transform: translateX(26px);
  background: linear-gradient(135deg, #ffffff, #ffffff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Small Switch Variant */
.switch.switch-sm {
  width: 40px;
  height: 20px;
}

.switch.switch-sm .slider:before {
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
}

.switch.switch-sm input:checked + .slider:before {
  transform: translateX(20px);
}

/* Large Switch Variant */
.switch.switch-lg {
  width: 60px;
  height: 30px;
}

.switch.switch-lg .slider:before {
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
}

.switch.switch-lg input:checked + .slider:before {
  transform: translateX(30px);
}

/* Switch Color Variants */
.switch.switch-success input:checked + .slider {
  background: linear-gradient(135deg, var(--success-color), #059669);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.switch.switch-warning input:checked + .slider {
  background: linear-gradient(135deg, var(--warning-color), #d97706);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.switch.switch-error input:checked + .slider {
  background: linear-gradient(135deg, var(--error-color), #dc2626);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.switch.switch-info input:checked + .slider {
  background: linear-gradient(135deg, var(--info-color), #2563eb);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Icon Switches */
.switch.switch-icon .slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}

.slider-icon {
  position: absolute;
  font-size: 10px;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
  z-index: 1;
}

.slider-icon.off {
  left: 6px;
  opacity: 1;
}

.slider-icon.on {
  right: 6px;
  opacity: 0;
}

input:checked + .slider .slider-icon.off {
  opacity: 0;
}

input:checked + .slider .slider-icon.on {
  opacity: 1;
  color: white;
}

/* Text Switches */
.switch.switch-text .slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.slider-text {
  position: absolute;
  font-size: 8px;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
  z-index: 1;
  letter-spacing: 0.5px;
}

.slider-text.off {
  left: 8px;
  opacity: 1;
}

.slider-text.on {
  right: 8px;
  opacity: 0;
}

input:checked + .slider .slider-text.off {
  opacity: 0;
}

input:checked + .slider .slider-text.on {
  opacity: 1;
  color: white;
}

.switch.switch-lg .slider-text {
  font-size: 10px;
}

/* Switch Groups */
.switch-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.switch-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  user-select: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.switch-group:hover .switch-label {
  color: var(--text-primary);
}

/* Range Sliders */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
  outline: none;
  transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Range Slider Color Variants */
.range-slider.range-success::-webkit-slider-thumb {
  background: linear-gradient(135deg, var(--success-color), #059669);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.range-slider.range-warning::-webkit-slider-thumb {
  background: linear-gradient(135deg, var(--warning-color), #d97706);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.range-slider.range-error::-webkit-slider-thumb {
  background: linear-gradient(135deg, var(--error-color), #dc2626);
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.range-slider.range-info::-webkit-slider-thumb {
  background: linear-gradient(135deg, var(--info-color), #2563eb);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

/* Multi-Range Slider */
.multi-range-slider {
  position: relative;
  height: 6px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
  border-radius: 3px;
}

.multi-range-slider input[type="range"] {
  position: absolute;
  top: -7px;
  width: 100%;
  background: transparent;
}

.multi-range-slider input[type="range"]::-webkit-slider-track {
  background: transparent;
}

/* Range Groups */
.range-group {
  margin-bottom: 1.5rem;
}

.range-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Theme Switch Container */
.theme-switch-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.theme-switch-container:hover .theme-icon {
  color: rgba(255, 255, 255, 1);
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-brand i {
  font-size: 1.75rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  cursor: pointer;
}

.user-avatar {
  position: relative;
  width: 40px;
  height: 40px;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: var(--success-color);
}

.user-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-user:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.dropdown-item i {
  width: 16px;
  text-align: center;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  flex: 1;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-title i {
  font-size: 2rem;
  opacity: 0.9;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.header-switches {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-right: 1rem;
}

.header-switches .switch-group {
  margin-bottom: 0;
}

.header-switches .switch-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

/* Components Grid */
.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.component-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.component-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.component-card.full-width {
  grid-column: 1 / -1;
}

.component-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.component-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.component-title i {
  color: var(--primary-color);
}

.copy-btn {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(102, 126, 234, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.component-preview {
  padding: 2rem;
}

.preview-section {
  margin-bottom: 2rem;
}

.preview-section:last-child {
  margin-bottom: 0;
}

.preview-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.switch-demo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slider-demo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.component-code {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  max-height: 300px;
  overflow-y: auto;
}

.component-code pre {
  margin: 0;
  padding: 1.5rem 2rem;
  background: transparent;
  font-size: 0.85rem;
  line-height: 1.5;
}

.component-code code {
  color: var(--text-primary);
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* Switch Groups Container */
.switch-group-container {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.group-header h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.switches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Interactive Demo */
.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.demo-panel h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.demo-switches {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-display {
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-display {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  width: 100%;
}

.status-display.online {
  border-color: var(--success-color);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.status-display.offline {
  border-color: var(--error-color);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.status-item:last-child {
  border-bottom: none;
}

.status-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.status-value {
  font-weight: 600;
  color: var(--text-primary);
}

.demo-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #5a67d8);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a67d8, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(400px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 300px;
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
}

.toast-icon.success {
  background: var(--success-color);
}

.toast-icon.error {
  background: var(--error-color);
}

.toast-icon.warning {
  background: var(--warning-color);
}

.toast-icon.info {
  background: var(--info-color);
}

.toast-message {
  font-weight: 500;
  color: var(--text-primary);
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-switches {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .components-grid {
    grid-template-columns: 1fr;
  }

  .demo-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .switches-grid {
    grid-template-columns: 1fr;
  }

  .toast {
    right: 1rem;
    left: 1rem;
    min-width: unset;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-brand {
    font-size: 1.25rem;
  }

  .user-name {
    display: none;
  }

  .theme-switch-container {
    padding: 0.25rem;
  }

  .switch {
    width: 40px;
    height: 20px;
  }

  .switch .slider:before {
    height: 14px;
    width: 14px;
  }

  .switch input:checked + .slider:before {
    transform: translateX(20px);
  }
}

/* Animation keyframes */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.component-card {
  animation: slideInUp 0.3s ease-out;
}

.toast.show {
  animation: slideInUp 0.3s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}
