:root {
  --color-primary: #ee696b;
  --color-secondary: #b12495;
  --color-accent: #ca61c3;
  --color-cyan: #ee85b5;
  --color-violet: #ff958c;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(88, 28, 135, 0.5019607843) #1a1a1a;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(88, 28, 135, 0.5019607843);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(88, 28, 135, 0.7019607843);
}

body {
  font-size: 0.8rem;
}

.menu-hidden {
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}

.menu-visible {
  transform: translateX(0);
  transition: transform 0.3s ease-in;
}

@media (min-width: 640px) {
  .menu-hidden,
  .menu-visible {
    transform: none;
    transition: none;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #070404 50%, #0c0505 100%);
  position: relative;
  overflow-x: hidden;
  color: #fff;
}

.bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(238, 105, 107, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(177, 36, 149, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 25%, rgba(238, 133, 181, 0.1) 0%, transparent 50%);
  filter: blur(40px);
}

.laptop {
  background: linear-gradient(135deg, #422d48, #684a57);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.screen {
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.screen .flex-1.overflow-y-auto {
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
}

.laptop-interactive {
  background: linear-gradient(135deg, #422d48, #684a57);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform 0.3s ease;
}
.laptop-interactive:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.device-mockup {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.laptop {
  background: linear-gradient(135deg, #422d48, #684a57);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.screen .flex-1.overflow-y-auto {
  transform: translateZ(10px);
}

.screen {
  background: linear-gradient(135deg, #1a202c, #422d48);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(238, 105, 107, 0.1), rgba(238, 133, 181, 0.1));
  pointer-events: none;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.glass-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.glass-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.floating-element {
  position: absolute;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
  animation-delay: 0s;
}
.floating-element:nth-child(2n) {
  animation: float 8s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.3;
  }
}
.grid-overlay {
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 150px 150px;
}

.company-logo {
  filter: grayscale(1) brightness(0.5);
  transition: all 0.3s ease;
}
.company-logo:hover {
  filter: grayscale(0) brightness(1);
}

.gradient-text {
  background: linear-gradient(135deg, #ee696b, #b12495, #ca61c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.color-primary {
  color: #ee696b;
}

.color-secondary {
  color: #b12495;
}

.color-accent {
  color: #ca61c3;
}

.color-custom {
  color: #ee85b5;
}

.color-custom_2 {
  color: #ff958c;
}

.from-custom {
  --tw-gradient-from: var(--color-primary) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-custom {
  --tw-gradient-to: var(--color-violet) var(--tw-gradient-to-position);
}

.btn-primary {
  background: linear-gradient(135deg, #ee696b, #b12495);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 100%;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(177, 36, 149, 0.3);
}

.sender-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.sender-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}
.sender-card.status-active {
  border-left: 4px solid #ee696b;
}
.sender-card.status-inactive {
  border-left: 4px solid #ef4444;
}

.status-badge {
  position: relative;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.status-badge.status-active {
  background: linear-gradient(135deg, rgba(32, 180, 32, 0.2), rgba(36, 177, 106, 0.2));
  color: rgb(88.5849056604, 225.4150943396, 88.5849056604);
  border: 1px solid rgba(32, 180, 32, 0.3);
}
.status-badge.status-inactive {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.status-badge.status-verified {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(51, 255, 255, 0.2));
  color: #66ffff;
  border: 1px solid rgba(0, 255, 255, 0.3);
}
.status-badge.status-unverified {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1.2);
  }
}
.action-btn {
  position: relative;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid transparent;
}
.action-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;
}
.action-btn.btn-test {
  background: linear-gradient(135deg, rgba(32, 180, 32, 0.8), rgba(45.2830188679, 217.7169811321, 45.2830188679, 0.9));
  color: white;
  border-color: rgba(32, 180, 32, 0.3);
}
.action-btn.btn-activate {
  background: linear-gradient(135deg, rgba(238, 105, 107, 0.8), rgba(177, 36, 149, 0.9));
  color: white;
  border-color: rgba(238, 105, 107, 0.3);
}
.action-btn.btn-deactivate {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.8), rgba(220, 38, 38, 0.9));
  color: white;
  border-color: rgba(239, 68, 68, 0.3);
}
.action-btn.btn-edit {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.8), rgba(75, 85, 99, 0.9));
  color: white;
  border-color: rgba(107, 114, 128, 0.3);
}
.action-btn.btn-delete {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.9));
  color: white;
  border-color: rgba(220, 38, 38, 0.3);
}

.progress-container {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  height: 8px;
}
.progress-container .progress-bar {
  height: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.progress-container .progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.progress-container .progress-bar.progress-low {
  background: linear-gradient(90deg, #ee696b, #b12495);
}
.progress-container .progress-bar.progress-medium {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}
.progress-container .progress-bar.progress-high {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.empty-state .empty-icon {
  transition: all 0.3s ease;
}

.toast {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show {
  transform: translateX(0);
}
.toast.toast-success {
  border-left: 4px solid #20b420;
  background: linear-gradient(135deg, rgba(32, 180, 32, 0.1), rgba(36, 177, 106, 0.1));
}
.toast.toast-error {
  border-left: 4px solid #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
}
.toast.toast-info {
  border-left: 4px solid #00FFFF;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(51, 255, 255, 0.1));
}

.loading {
  position: relative;
  pointer-events: none;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ee696b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sender-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sender-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}
@media (min-width: 1200px) {
  .sender-grid {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  }
}

.page-header {
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 768px) {
  .action-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
@media (prefers-color-scheme: dark) {
  .sender-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  }
}
.form-card,
.template-card,
.detail-card {
  background: linear-gradient(135deg, rgba(16, 16, 20, 0.8), rgba(31, 32, 41, 0.8));
  border: 1px solid rgba(75, 85, 99, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0.75rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(31, 32, 41, 0.8);
  border: 1px solid rgba(75, 85, 99, 0.5);
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.form-control::-moz-placeholder {
  color: #9ca3af;
}
.form-control::placeholder {
  color: #9ca3af;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
}

.form-help {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.preview-container {
  background: rgba(31, 32, 41, 0.8);
  border: 1px solid rgba(75, 85, 99, 0.3);
  border-radius: 0.75rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.preview-container.detail {
  background: white;
  min-height: 500px;
  overflow: hidden;
}

.preview-iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.75rem;
  background: white;
}
.preview-iframe.detail {
  height: 600px;
  border-radius: 0;
}

.template-card {
  transition: all 0.3s ease;
  overflow: visible;
}
.template-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.search-box {
  background: rgba(31, 32, 41, 0.8);
  border: 1px solid rgba(75, 85, 99, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(31, 32, 41, 0.5);
  border: 1px solid rgba(75, 85, 99, 0.3);
  border-radius: 0.75rem;
}

#templatesGrid {
  overflow: visible;
}

.template-item {
  overflow: visible;
  position: relative;
  z-index: 1;
}
.template-item:has(.template-menu:not(.hidden)) {
  z-index: 60;
}

.tox-tinymce {
  border-radius: 12px !important;
  border: 1px solid #374151 !important;
}

.tox .tox-editor-header {
  background: #1f2937 !important;
  border-bottom: 1px solid #374151 !important;
  border-radius: 12px 12px 0 0 !important;
}
.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary {
  background: #1f2937 !important;
}
.tox .tox-edit-area,
.tox .tox-edit-area__iframe {
  background: #111827 !important;
}
.tox .tox-button {
  color: #d1d5db !important;
}
.tox .tox-button:hover {
  background: #374151 !important;
}
.tox .tox-fullscreen {
  z-index: 99999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
}

.tox-fullscreen {
  z-index: 99999 !important;
}
.tox-fullscreen .tox-editor-header {
  background: #1f2937 !important;
  border-bottom: 1px solid #374151 !important;
  border-radius: 0 !important;
}
.tox-fullscreen .tox-edit-area,
.tox-fullscreen .tox-edit-area__iframe {
  background: #111827 !important;
}

.tox.tox-tinymce.tox-fullscreen {
  z-index: 999999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.tox-fullscreen .feature-card {
  z-index: 1 !important;
}

.categories-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}
.categories-checkboxes input[type=checkbox] {
  margin-right: 0.5rem;
}

.image-preview {
  max-width: 200px;
  max-height: 150px;
  border-radius: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.5) rgba(30, 41, 59, 0.5);
}
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

.phase-card {
  background: rgba(51, 65, 85, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
}
.phase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
}
.phase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  border-radius: 12px 12px 0 0;
}

.order-badge {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.sender-card {
  background: rgba(51, 65, 85, 0.6);
  border: 2px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sender-card:hover {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.05);
}
.sender-card.selected {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}

.capacity-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.capacity-bar {
  flex: 1;
  height: 6px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.capacity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  transition: width 0.3s ease;
}

.capacity-summary {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.stat-item:last-child {
  border-bottom: none;
}

.phase-creator {
  background: rgba(30, 41, 59, 0.6);
  border: 2px dashed rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.phase-creator:hover:not(.disabled) {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.05);
}
.phase-creator.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.phase-form {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}

.schedule-preview {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

.schedule-day {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(51, 65, 85, 0.5);
  border-radius: 6px;
  margin-bottom: 8px;
}

.empty-phases {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
  border: 2px dashed rgba(148, 163, 184, 0.2);
  border-radius: 12px;
}
.empty-phases i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.form-section {
  transition: all 0.3s ease;
}
.form-section.hidden {
  display: none;
}

.email-import-method input[type=radio] {
  opacity: 0;
  position: absolute;
}
.email-import-method input[type=radio]:checked + label {
  border-color: #8b5cf6;
  background-color: #8b5cf6;
  background-opacity: 0.1;
  color: #ffffff;
}
.email-import-method label {
  display: block;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid #374151;
  border-radius: 0.75rem;
  background-color: #1f2937;
  color: #d1d5db;
  transition: all 0.2s ease;
}
.email-import-method label:hover {
  border-color: #6b7280;
}/*# sourceMappingURL=main.css.map */