* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background: #f5f5f5; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
header { background: white; padding: 20px; margin-bottom: 30px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; }
h1 { font-size: 28px; }
.intro-text { color: #666; font-size: 14px; }
.auth-section { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); max-width: 400px; margin: 30px auto; }
.auth-section h2 { margin-bottom: 20px; font-size: 20px; }
.form-group { margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 14px; }
input, textarea, select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: inherit; }
input:focus, textarea:focus, select:focus { outline: none; border-color: #0066cc; box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1); }
input[type="checkbox"]:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
button { background: #0066cc; color: white; padding: 10px 20px; border: none; border-radius: 4px; font-size: 14px; cursor: pointer; font-weight: 500; }
button:hover { background: #0052a3; }
button:active { transform: scale(0.98); }
button:disabled { background: #ccc; cursor: not-allowed; }
.dashboard { display: none; }
.dashboard.active { display: block; }
#loginScreen { display: none; } /* Initially hidden until auth check completes */
#loginScreen.show { display: block; }
.section { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-bottom: 30px; }
.section h2 { font-size: 20px; margin-bottom: 20px; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }
.section h3 { font-size: 18px; margin-bottom: 15px; margin-top: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.list-item { background: #f9f9f9; padding: 15px; border-radius: 4px; margin-bottom: 10px; border-left: 4px solid #0066cc; }
.list-item h3 { font-size: 16px; margin-bottom: 5px; }
.list-item-meta { font-size: 12px; color: #999; }
.campaign-link { background: #f0f0f0; padding: 8px 12px; border-radius: 4px; font-size: 13px; font-family: monospace; margin: 10px 0; word-break: break-all; }
.error { background: #fee; color: #c00; padding: 12px; border-radius: 4px; margin-bottom: 15px; font-size: 14px; }
.success { background: #efe; color: #060; padding: 12px; border-radius: 4px; margin-bottom: 15px; font-size: 14px; }
.info { background: #e3f2fd; color: #1565c0; padding: 12px; border-radius: 4px; margin-bottom: 15px; font-size: 14px; }
.btn-secondary { background: #999; }
.btn-secondary:hover { background: #777; }
.btn-danger { background: #dc3545; }
.btn-danger:hover { background: #c82333; }
.btn-small { padding: 6px 12px; font-size: 12px; margin-left: 5px; }
textarea { resize: vertical; min-height: 60px; }
.hidden { display: none; }
.user-email { color: #666; font-size: 14px; }
.clickable { cursor: pointer; }
.clickable:hover { text-decoration: underline; }
code { background: #f0f0f0; padding: 2px 6px; border-radius: 3px; font-family: monospace; font-size: 12px; }
.tabs { display: flex; gap: 10px; margin-bottom: 20px; border-bottom: 2px solid #f0f0f0; }
.tab { padding: 10px 20px; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.tab.active { border-bottom-color: #0066cc; color: #0066cc; font-weight: 500; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Mobile Hamburger Menu */
.hamburger { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.hamburger-icon { display: block; width: 24px; height: 2px; background: #333; position: relative; }
.hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 24px; height: 2px; background: #333; position: absolute; }
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { top: 8px; }
.mobile-menu { display: none; position: fixed; top: 0; right: 0; width: 250px; height: 100vh; background: white; box-shadow: -2px 0 10px rgba(0,0,0,0.1); z-index: 1000; padding: 20px; }
.mobile-menu.active { display: block; }
.mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; }
.mobile-menu-overlay.active { display: block; }
.mobile-menu-item { display: block; padding: 15px; border-bottom: 1px solid #f0f0f0; text-decoration: none; color: #333; cursor: pointer; }
.mobile-menu-item:hover { background: #f5f5f5; }
.mobile-menu-close { position: absolute; top: 10px; right: 10px; background: transparent; border: none; font-size: 24px; cursor: pointer; color: #666; }
.desktop-menu { display: flex; align-items: center; gap: 15px; }

/* DNS Setup Table */
.dns-container { width: 100%; margin-top: 10px; overflow-x: auto; }
.dns-grid { display: grid; grid-template-columns: 80px 1fr 40px; background: white; border: 1px solid #000; }
.dns-grid-row { display: contents; }
.dns-grid-cell { padding: 12px 10px; border-bottom: 1px solid #000; border-right: 1px solid #000; }
.dns-grid-cell:nth-child(3n) { border-right: none; }
.dns-grid-label { font-weight: 600; color: #444; }
.dns-grid-value { font-family: monospace; font-size: 13px; overflow-x: auto; white-space: nowrap; color: #000; }
.dns-grid-value::-webkit-scrollbar { height: 6px; }
.dns-grid-value::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
.dns-grid-value::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.dns-grid-value::-webkit-scrollbar-thumb:hover { background: #999; }
.dns-grid-action { text-align: center; }
.copy-btn { background: transparent; border: none; cursor: pointer; padding: 4px; font-size: 16px; display: inline-block; width: 24px; text-align: center; outline: none; user-select: none; }
.copy-btn:hover { opacity: 0.7; }
.copy-btn:focus { outline: none; background: transparent; }
.copy-btn:active { background: transparent; }
.dns-mobile { display: none; }
.domain-actions { display: flex; gap: 10px; }

@media (max-width: 768px) {
  /* Prevent mobile browser auto-zoom on input focus */
  input, textarea, select { font-size: 16px; }

  .desktop-menu { display: none !important; }
  .hamburger { display: block; }
  .desktop-only { display: none !important; }
  .dns-grid { display: none; }
  .dns-mobile { display: grid; grid-template-columns: 100px 1fr 40px; background: white; border: 1px solid #000; }
  .dns-mobile-label { font-weight: 600; color: #444; font-size: 13px; padding: 12px 10px; border-bottom: 1px solid #000; border-right: 1px solid #000; }
  .dns-mobile-value { font-family: monospace; font-size: 12px; color: #000; font-weight: 500; overflow-x: auto; white-space: nowrap; padding: 12px 10px; border-bottom: 1px solid #000; border-right: 1px solid #000; }
  .dns-mobile-value::-webkit-scrollbar { height: 4px; }
  .dns-mobile-value::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
  .dns-mobile-value::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
  .dns-mobile-action { text-align: center; padding: 12px 10px; border-bottom: 1px solid #000; }
  .dns-mobile-label:nth-child(3n+1) { border-right: 1px solid #000; }
  .dns-mobile-value:nth-child(3n+2) { border-right: 1px solid #000; }
  .dns-mobile-action:nth-child(3n) { border-right: none; }
  .dns-mobile-label:nth-last-child(-n+3), .dns-mobile-value:nth-last-child(-n+3), .dns-mobile-action:nth-last-child(-n+3) { border-bottom: none; }
  .domain-item-container { flex-direction: column; align-items: stretch !important; gap: 10px; }
  .domain-content { flex: 1 !important; min-width: 0; }
  .domain-actions { flex-direction: column; width: 100%; }
  header { padding: 15px; }
  h1 { font-size: 20px; }
  .intro-text { font-size: 12px; }
  .container { padding: 10px; }
  .section { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   Utility Classes (for inline style replacement)
   ======================================== */

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline-block { display: inline-block; }

/* Flexbox Utilities */
.flex-col { flex-direction: column; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-end { display: flex; justify-content: flex-end; }
.flex-align-end { display: flex; align-items: flex-end; }
.flex-align-center { display: flex; align-items: center; }
.gap-5 { gap: 5px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }

/* Margin Utilities */
.m-0 { margin: 0; }
.m-15 { margin: 15px 0; }
.m-20 { margin: 20px 0; }
.mt-5 { margin-top: 5px; }
.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-5 { margin-bottom: 5px; }
.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.ml-5 { margin-left: 5px; }
.ml-10 { margin-left: 10px; }
.mr-10 { margin-right: 10px; }

/* Padding Utilities */
.p-0 { padding: 0; }
.p-5 { padding: 5px; }
.p-8 { padding: 8px; }
.p-10 { padding: 10px; }
.p-12 { padding: 12px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.px-10 { padding-left: 10px; padding-right: 10px; }
.px-12 { padding-left: 12px; padding-right: 12px; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.py-12 { padding-top: 12px; padding-bottom: 12px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pb-10 { padding-bottom: 10px; }
.pl-10 { padding-left: 10px; }
.pr-10 { padding-right: 10px; }

/* Text Utilities */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-sm { font-size: 12px; }
.text-md { font-size: 13px; }
.text-base { font-size: 14px; }
.text-lg { font-size: 16px; }
.text-xl { font-size: 18px; }
.text-2xl { font-size: 20px; }
.text-3xl { font-size: 24px; }
.text-4xl { font-size: 32px; }
.font-bold { font-weight: bold; }
.font-600 { font-weight: 600; }

/* Color Utilities */
.text-primary { color: #0066cc; }
.text-danger { color: #dc3545; }
.text-success { color: #28a745; }
.text-warning { color: #ffc107; }
.text-muted { color: #666; }
.text-light { color: #999; }
.text-white { color: white; }
.text-dark { color: #333; }

/* Background Utilities */
.bg-white { background: white; }
.bg-transparent { background: transparent; }
.bg-success { background: #28a745; }
.bg-danger { background: #dc3545; }
.bg-warning { background: #fff3cd; }
.bg-light { background: #f8f9fa; }
.bg-gray { background: #f0f0f0; }

/* Border Utilities */
.border-0 { border: none; }
.border { border: 1px solid #ddd; }
.border-dark { border: 1px solid #000; }
.border-gray { border: 1px solid #dee2e6; }
.border-warning { border: 2px solid #ffc107; }
.border-bottom { border-bottom: 2px solid #f0f0f0; }
.border-top { border-top: 1px solid #ddd; }
.rounded { border-radius: 4px; }
.rounded-lg { border-radius: 6px; }
.rounded-xl { border-radius: 8px; }

/* Sizing Utilities */
.w-100 { width: 100%; }
.w-auto { width: auto; }
.h-300 { height: 300px; }
.min-h-80 { min-height: 80px; }

/* Position Utilities */
.relative { position: relative; }
.fixed { position: fixed; }
.absolute { position: absolute; }

/* Cursor Utilities */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Text Decoration */
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Specific Component Classes */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-overlay-dark {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-close-btn {
  background: #dc3545;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.chart-container {
  position: relative;
  height: 300px;
  margin-bottom: 20px;
}

.domain-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.btn-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 4px 2px;
}

.help-text {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.label-block {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.table-full {
  width: 100%;
  border-collapse: collapse;
}

.td-left {
  text-align: left;
  padding: 10px;
}

.td-right {
  text-align: right;
  padding: 10px;
}

.input-full {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.input-full-lg {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.input-full-xl {
  width: 100%;
  padding: 12px;
  border: 2px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  font-family: monospace;
}

.warning-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.info-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.error-box {
  display: none;
  background: #f8d7da;
  color: #721c24;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  border: 1px solid #f5c6cb;
}

.empty-state {
  padding: 20px;
  text-align: center;
  color: #999;
}

.title-danger {
  margin: 0;
  color: #dc3545;
}

.title-lg {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* Additional Button Variants */
.btn-success {
  background: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-success-bold {
  background: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.btn-success-lg {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.btn-gray {
  background: #6c757d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-red {
  background: #f44336;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-delete-disabled {
  background: #dc3545;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: not-allowed;
  opacity: 0.5;
  font-weight: bold;
}

/* Modal Size Variations */
.modal-content-sm {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}

.modal-content-md {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content-lg {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content-xl {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

/* Tab Button Styles */
.tab-btn-active {
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  margin-right: 5px;
}

.tab-btn-inactive {
  padding: 10px 20px;
  border: none;
  background: #f0f0f0;
  color: #333;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
}

/* Table Cell Utilities */
.td-w-40 {
  padding: 12px;
  width: 40px;
}

.td-w-80 {
  padding: 12px;
  width: 80px;
}

.td-w-120 {
  padding: 12px;
  width: 120px;
}

.td-w-140 {
  padding: 12px;
  width: 140px;
}

.td-ellipsis {
  padding: 12px;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.td-center-muted {
  padding: 12px;
  text-align: center;
  color: #999;
  font-size: 13px;
}

.td-nowrap {
  padding: 12px;
  white-space: nowrap;
}

.td-nowrap-center {
  padding: 12px;
  white-space: nowrap;
  text-align: center;
}

/* Form Input Variations */
.input-w-200 {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 200px;
}

.textarea-inherit {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.textarea-mono {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: monospace;
  min-height: 60px;
}

.input-inherit {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

/* Info/Warning Boxes */
.info-box-blue {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #e7f3ff;
  border: 1px solid #2196F3;
  border-radius: 4px;
  font-size: 14px;
}

.warning-box-yellow {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  font-size: 14px;
}

/* Layout Utilities */
.flex-1 { flex: 1; }
.flex-1-min-0 { flex: 1; min-width: 0; }
.line-height-16 { line-height: 1.6; }
.line-height-18 { line-height: 1.8; }
.letter-spacing-wide { letter-spacing: 0.5px; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap { white-space: nowrap; }

/* Footer Style */
.footer-main {
  background: #f0f0f0;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

/* Table Row Style */
.tr-header {
  background: #f5f5f5;
  border-bottom: 2px solid #ddd;
}

/* Link Styles */
.link-primary {
  color: #0066cc;
  text-decoration: none;
  margin-left: 10px;
}

.link-danger {
  color: #dc3545;
  font-family: monospace;
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Text Content Styles */
.text-warning-dark {
  margin: 0;
  font-weight: bold;
  color: #856404;
}

.text-warning-body {
  margin: 0;
  color: #856404;
  font-size: 14px;
}

.text-note {
  margin: 0 0 10px 0;
  font-weight: bold;
  font-size: 14px;
}

.text-note-body {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Emoji/Icon Styles */
.emoji-lg {
  font-size: 48px;
  margin-bottom: 20px;
}

.emoji-xl {
  font-size: 64px;
  margin-bottom: 20px;
}

/* Section with Border */
.section-padded {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* List Styles */
.list-styled {
  margin: 0;
  padding-left: 25px;
  color: #666;
}

/* Additional Flex Utilities */
.flex-wrap { flex-wrap: wrap; }
.flex-2 { flex: 2; }

/* Width Utilities */
.min-w-200 { min-width: 200px; }
.min-w-300 { min-width: 300px; }

/* Height Utilities */
.min-h-200 { min-height: 200px; }
.max-h-200 { max-height: 200px; }

/* Font Family */
.font-mono { font-family: monospace; }

/* Margin Utilities */
.ml-28 { margin-left: 28px; }
.my-10 { margin-top: 10px; margin-bottom: 10px; }

/* Select Input Variant */
.select-compact {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

/* Link Preview Component */
.link-preview-box {
  display: block;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 12px;
  border: 2px solid #66bb6a;
  box-shadow: 0 2px 8px rgba(102, 187, 106, 0.2);
}

.link-preview-label {
  font-size: 11px;
  font-weight: 600;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.link-preview-text {
  font-size: 16px;
  font-weight: 600;
  color: #1b5e20;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  letter-spacing: 0.3px;
}

/* Success Banner Components (for JavaScript-generated content) */
.success-banner-gradient {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 18px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.25);
}

.success-banner-link-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.success-banner-label {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0.95;
  letter-spacing: 1px;
}

.success-banner-link {
  font-size: 16px;
  font-weight: bold;
  word-break: break-all;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.3px;
  color: #a3d5ff;
  text-decoration: underline;
  display: block;
}

.success-banner-btn-copy {
  background: white;
  color: #28a745;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-banner-btn-test {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}

.success-banner-btn-dismiss {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  margin-left: auto;
}
