/* General Styles */

.surfl-container {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;

  margin-left: -20px;
  position: relative;

  min-height: 100vh;

  /* Variables Light Theme */

  --surfl-primary-color-light: black;
  --surfl-primary-bg-light: #fff;
  --surfl-primary-bg-gradeint-light: linear-gradient(
    to right,
    #121c1d,
    #080a90
  );
  --surfl-secondary-color-light: #050b3c;
  --surfl-icon-bg-light: #050b3c;
  --surfl-nav-bg-light: linear-gradient(135deg, #000 0%, #054279 100%);
  --surfl-btn-gradient-light: linear-gradient(90deg, #00317d, #127ec1 90%);

  /* Variables Dark Theme */

  --surfl-primary-color-dark: #d1d1d1;
  --surfl-secondary-color-dark: #009efd;
  --surfl-icon-bg-dark: #009efd;
  --surfl-primary-bg-dark: #111;
  --surfl-primary-bg-gradeint-dark: linear-gradient(to right, #22d3ee, #3b82f6);
  --surfl-secondary-bg-dark: #080808;
  --surfl-nav-bg-dark: transparent;

  /* Default */

  --surfl-module-card-transition: all 0.3s ease;
}

.surfl-nav-tabs,
.surfl-tab-content-area {
  max-width: 2200px;
  margin: auto;
}

.surfl-container abbr {
  text-decoration: none;
}

.surfl-container {
  color: black;
}

.surfl-gradient-text {
  background: linear-gradient(
    to right,
    #22d3ee,
    #3b82f6
  ); /* cyan-400 → blue-500 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* cyan-400 → blue-500 */
  background-clip: text; /* fallback for non-webkit */
  color: transparent;
}

div.surfl-changes-modal-content img {
  display: none !important;
}

input[type="number"].surfl-input-number {
  padding-block: initial !important;
  padding-inline: 4px !important;
  border-radius: initial !important;
  margin-right: 10px;
}

.surfl-btn-sm {
  min-height: 26px;
  line-height: 2.18181818;
  padding: 0px 8px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 7px;
  white-space: nowrap;
  box-sizing: border-box;
}
.surfl-incomplete-btn {
  color: #ef2720ff !important;
  border: none;
  background: transparent;
  cursor: pointer;
}

.surfl-trash-btn {
  color: tomato;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.surfl-seal-status {
  display: inline-block;
  padding: 1px 3px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.2px;
  border: 3px solid currentColor;
  position: relative;
  transform: rotate(-7deg);
  user-select: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
}

.surfl-seal-status.incomplete {
  color: #ef2720ff;
  border-color: #eb2720ff;
}

.surfl-seal-status.complete {
  color: #28a745;
  border-color: #28a745;
  transform: rotate(5deg);
}

.surfl-seal-status.pending {
  color: #f0ad4e;
  border-color: #f0ad4e;
  transform: rotate(-3deg);
}

.surfl-seal-status:hover {
  transform: rotate(0deg) scale(1.05);
  opacity: 1;
}

.surfl-select-hidden {
  opacity: 0;
  transform: translateY(2px);
  pointer-events: none;
  transition:
    opacity 0.35s ease-out,
    transform 0.35s ease-out;
}

.surfl-select-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



/* The button */
.surfl-upgrade-btn {
  border-radius: 999px; /* pill */
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.surfl-upgrade-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(139, 209, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}

.surfl-upgrade-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.surfl-upgrade-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.surfl-big-txt {
  font-size: x-large;
}

.surfl-highlight-text {
  text-decoration: underline;
}
.surfl-url-label {
  padding: 6px;
  font-weight: 600;
  border-radius: 13px;
}
.surfl-flex-col {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.surfl-flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.surfl-flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.surfl-sr-table .surfl-flex-end {
  padding-right: 18px;
  align-items: flex-end;
}
.surfl-flex-center {
  flex-wrap: wrap;
}
.surfl-flex-between {
  display: flex;

  justify-content: space-between;
  align-items: center;
}
.surfl-flex-around {
  display: flex;

  justify-content: space-around;
  align-items: center;
}

.surfl-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.surfl-grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* SR TABLE*/

.surfl-sr-table {
  width: 100%;
  max-width: 1500px;
  border-collapse: collapse;
}
.surfl-progress-container {
  max-width: 1500px;
}
.surfl-sr-table > * label {
  position: relative;
}

.surfl-label {
  position: relative !important;
  text-align: left;
  padding: 4px 3px;
  font-weight: 500;
  font-size: medium;
  /* cyan-400 → blue-500 */
}

.surfl-sr-table td {
  padding: 15px;
  position: relative;
  max-width: 1000px !important;
}

.surfl-sr-table label {
  font-weight: 500;
  margin-bottom: 8px;
}

.surfl-input-group,
.surfl-select-container {
  position: relative !important;
  margin-top: 15px;
}

.surfl-sr-table input[type="text"],
.surfl-sr-table input[type="url"],
.surfl-sr-table select,
.surfl-sr-table input[type="number"] {
  width: 100%;
  max-width: 97% !important;
  border-radius: 10rem;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 14px;
}
.surfl-sr-table input[type="number"] {
  width: fit-content;
}

.surfl-sr-table select {
  padding: 4px;
  border-radius: 10px;
  border: none;
}

.surfl-sr-table input[type="text"]:focus,
.surfl-sr-table input[type="url"]:focus,
.surfl-sr-table select:focus {
  outline: none;
}

.surfl-select-wrapper {
  position: relative;
  width: 100%;
}

.surfl-select-wrapper::after {
  content: "\2BC6";
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  pointer-events: none;
}
.surfl-bulk-select-btn .surfl-select-wrapper::after {
  top: 50%;
  right: 17px;
}

.surfl-select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 7px 30px; /* Make space for the arrow */
}

/* Stunning Select Styles */

.surfl-select-multiple {
  min-width: 100%;
  min-height: 200px;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  appearance: none;
  overflow: auto;
}
.surfl-select-multiple td {
  vertical-align: top !important;
}
.surfl-select-multiple:focus {
  outline: none;
}

.surfl-select-multiple option {
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  border: 1px solid transparent;
}

.surfl-select-multiple option:hover {
  color: white;
}

.surfl-select-multiple option:checked {
  font-weight: 500;
  background: linear-gradient(90deg, #021c24, #000);
  color: white;
}

/* Custom scrollbar for select */

/* ✅ Firefox scrollbar styling */
.surfl-select-multiple {
  scrollbar-width: auto; /* auto | thin | none */
}

.surfl-select-multiple::-webkit-scrollbar {
  width: 10px;
}

.surfl-select-multiple::-webkit-scrollbar-track {
  border-radius: 10px;
}

.surfl-select-multiple::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

.surfl-select-multiple::-webkit-scrollbar-thumb:hover {
}

.surfl-key-hint {
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  width: fit-content;
}

.surfl-key-hint .surfl-key {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  margin: 0 4px;
}

.surfl-mouse-click {
  width: fit-content;
  position: relative;
  top: 3px;
}

/* Checkbox styling */
.surfl-checkbox-group {
  display: flex;
  align-items: center;
}

.surfl-checkbox-group label {
  margin: 0;
  font-weight: normal;
  cursor: pointer;
}

.surfl-checkbox-group input[type="checkbox"]:checked + label {
  font-weight: 500;
}

/* Categories Section Styling */
.surfl-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.surfl-category-card,
.surfl-pro-modal-content {
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.surfl-category-card:hover,
.surfl-pro-modal-content:hover {
  transform: translateY(-3px);
}

.surfl-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.surfl-category-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 12px;
  font-size: 18px;
}

.surfl-category-title {
  font-weight: 600;
  font-size: 16px;
}

.surfl-category-description {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 52px;
}

.surfl-module-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.surfl-module-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.surfl-module-features li:last-child {
  margin-bottom: 0;
}

.surfl-module-features li:hover {
  border-radius: 6px;
  padding-left: 28px;
  transition: all 0.2s ease;
}

.surfl-module-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #989898;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
}

/* Pro feature styling with star */
.surfl-module-features li.surfl-pro-feature::before {
  content: "★";
  color: #fbbf24;
  font-size: 14px;
}

.surfl-module-features li.surfl-pro-feature:hover::before {
  color: #f59e0b;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* Regular feature hover effect */
.surfl-module-features li:not(.surfl-pro-feature):hover::before {
  color: #059669;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* Module Card Footer - Background Processing Checkbox */
.surfl-module-card-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

/* Module Card Header */
.surfl-module-card-header {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
  height: 50px;
}

.surfl-module-card-footer label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.surfl-module-card-footer label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #009efd;
}

.surfl-module-card-footer label span {
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
  font-weight: 500;
}

.surfl-category-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.surfl-category-checkbox + .surfl-category-card {
  cursor: pointer;
}

/* Submit button */
.surfl-submit-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0 10px;
  gap: 20px;
}

/* Custom scrollbar for select */
.surfl-select-multiple::-webkit-scrollbar {
  width: 10px;
}

.surfl-select-multiple::-webkit-scrollbar-track {
  border-radius: 10px;
}

.surfl-select-multiple::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

/* Upgrade to Pro Link */
.surfl-upgrade-pro-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 10px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.surfl-upgrade-pro-link:hover {
}

/* Spam Notice */
.surfl-otp-info-message {
  font-size: 0.9rem;
  margin: 1rem 0;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
}

.surfl_redirect_type_options {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  position: relative;
}

.surfl_redirect_option {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.surfl_redirect_option:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Hide the native radio button but keep it accessible */
.surfl_redirect_option input[type="radio"] {
  margin-right: 8px;
  opacity: 0;
  position: absolute;
}

/* Change style when the radio button is checked */
.surfl_redirect_option input[type="radio"]:checked ~ span {
  /* semi-transparent blue */
}

/* Style the span for a nicer look */
.surfl_redirect_option span {
  padding: 8px 12px;
  border-radius: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

#surfl-bulk-redirect-form {
  padding-top: 20px;
}

/* Bulk Actions Dropdown */

/* Pagination */
.surfl-pagination .surfl-tablenav-pages {
  padding: 15px;
}

.surfl-tablenav.top.surfl-bulk-actions {
  width: 97%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Glassmorphic Button */
.surfl-tablenav button {
  /* Bright border for visibility */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.surfl-tablenav-pages a,
.surfl-tablenav-pages span {
  padding: 5px 12px;
  margin: 0 2px;
  border-radius: 5px;
}

.surfl-tablenav-pages a:hover {
}

/* 410 BULK adding */
.surfl-bulk-form textarea {
  width: 100%;
  max-width: 600px;
  height: 200px;
  font-family: monospace;
}

.surfl-bulk-form .description {
  margin-top: 5px;
}

/* 410 BULK adding */

/

/* backup stats*/
.surfl-backup-stats {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;

  padding: 20px;
  gap: 20px;
}

.surfl-white-text {
  padding: 2px 4px;
  border-radius: 4px;
}

.surfl-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 20px;
  margin-inline: auto;
}

.surfl-stat-box {
  text-align: center;
  padding: 15px;
  border-radius: 12px; /* smoother corners for glassmorphism */
  transition: 0.3s;
}

.surfl-stat-box:hover {
  scale: 1.01;
}

.surfl-stat-number {
  display: block;
  font-size: 24px;
  font-weight: bold;

  margin-bottom: 5px;
}

.surfl-stat-label {
  font-size: 14px;
}
/* backup stats*/

/* Grid for the backup sections (database and file) */
.surfl-backup-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(397px, 1fr));
  gap: 20px;
}

.surfl-backup-box {
  padding: 20px;
  border-radius: 4px;
}

/* Modern Primary Nav Tabs styling */
.surfl-nav-tabs {
  justify-content: space-around;
  align-items: center;
  padding: 12px 0;
  box-shadow: none;
}

.surfl-nav-tabs a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  padding: 3px 7px;
  min-width: 80px;
  transition: color 0.2s;
  gap: 10px;
  outline-color: transparent;
}

.surfl-nav-flexer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: auto;
}

.surfl-nav-flexer h1 {
  flex-basis: 300px;
  position: relative;
}

.surfl-nav-flexer div {
  flex-basis: auto;
}

.surfl-nav-tabs-background {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background: transparent;
  padding: 12px 21px;
  color: white;

  border-radius: 6px;
  font-weight: 600;
  position: relative;
  z-index: 1000;
}

/* Default Primary tab style */
.surfl-nav-tabs .nav-tab {
  transition: all 0.3s ease;
}
.surfl-nav-tabs a i.dashicons,
.surfl-nav-tabs a i.fa {
  font-size: 24px;
  margin-bottom: 4px;
  line-height: 1;
  transition: color 0.2s;
}
/* Active tab style */
.surfl-nav-tabs .surfl-nav-tab.surfl-nav-tab-active {
  border-radius: 10px;
}

.surfl-plain-logo {
  font-weight: bolder;
  font-size: 2rem;
}

/* Animation for the heading */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-down {
  animation: fadeInDown 1s ease-out;
}

/* ========================================
   NEW PRIMARY NAVIGATION STYLES
   Inspired by modern, clean navigation design
   ======================================== */

.surfl-primary-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);

  width: 100%;
  max-width: 2200px;
  margin: auto;
}

.surfl-nav-wrapper {
  width: 100%;

  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  gap: 40px;
}

/* Logo & Brand Section */
.surfl-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.surfl-nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.surfl-nav-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  letter-spacing: -0.02em;
}

/* Primary Navigation Links */
.surfl-nav-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.surfl-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  text-decoration: none;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.surfl-nav-link i.dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 18px;
}

.surfl-nav-link:hover {
  color: #333333;
  background: #f9fafb;
}

/* Active state with yellow underline */
.surfl-nav-link-active {
  color: #333333;
  font-weight: 600;
}

.surfl-nav-link-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;

  border-radius: 2px;
}

/* Secondary Actions */
.surfl-nav-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}

.surfl-nav-warning {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1px 9px;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #92400e;
}

.surfl-nav-warning .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .surfl-nav-wrapper {
    gap: 20px;
    padding: 0 16px;
  }

  .surfl-nav-primary {
    gap: 4px;
  }

  .surfl-nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .surfl-nav-brand-name {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .surfl-nav-wrapper {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .surfl-nav-brand {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }

  .surfl-nav-primary {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .surfl-nav-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Dark mode support (optional) */
/* @media (prefers-color-scheme: dark) {
  .surfl-primary-nav {
    background: #1a1a1a;
    border-bottom-color: #333333;
  }

  .surfl-nav-brand-name {
    color: #ffffff;
  }

  .surfl-nav-link {
    color: #a0a0a0;
  }

  .surfl-nav-link:hover {
    color: #ffffff;
    background: #2a2a2a;
  }

  .surfl-nav-link-active {
    color: #ffffff;
  }

  .surfl-nav-logo-img {
    filter: grayscale(100%) brightness(0) invert(1);
  }
} */

.surfl-gradient-button {
  padding: 12px 21px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  z-index: 10;
  position: relative;
  cursor: pointer;
}
.surfl-gradient-button:hover {
  transition: 0.3s;
}

.surfl-cyan-button:disabled,
.surfl-gradient-button:disabled,
.surfl-btn-sm:disabled,
.surfl-white-button:disabled,
.surfl-clean-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.surfl-bulk-select-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.surfl-bulk-select-btn button {
  border-radius: 10rem;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* mulitple redirect */

.surfl-bulk-actions-container {
  position: relative;
  bottom: 0;
}

#surfl-bulk-410-form {
  position: relative;
}

.surfl-410-description {
  padding: 20px;
  width: fit-content;
  margin: auto;
  margin-block: 7px;
  border-radius: 16px;
}

/* Custom style for groups */
.surfl-group {
  padding: 0.25rem;
  position: relative;
}

.surfl-page-content-wrapper {
  padding: 10px;
  padding-bottom: 100px;
  padding-top: 0;
  position: relative;
  margin: auto;
  max-width: 2000px;
}

/* Additional styling for the container */
.surfl-notice {
  padding: 0;
}

/*
*
***backup_css
*
*/
.surfl-sr-report-container {
  margin: auto;
  padding: 20px;
}
.surfl-progress-container {
  width: 100%;
  border-radius: 10px;
  margin: 20px auto;

  position: relative;
}

.surfl-progress-bar {
  height: 8px;
  width: 0%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
  transition: width 0.4s ease;
  position: relative;
}

.surfl-progress-text {
  position: absolute;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  text-align: center;
}
.surfl-progress-size {
  position: absolute;
  right: 24px;
  top: 8px;
  font-weight: bold;
  font-size: 0.9em;
}

.surfl-log-container {
  font-size: 0.9em;
  text-align: center;
}

/* Status sub-description for table names */
.surfl-status-sub-desc {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.surfl-flex-center {
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.surfl-flex-end {
  gap: 10px;
  display: flex;
  justify-content: end;
  align-items: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Styles for db file upload and restore */

.surfl-upload-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.surfl-file-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.surfl-custom-file-label {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  padding: 2rem 5rem;

  font-weight: 500;
  cursor: pointer;

  transition: all 0.3s ease;
}

.surfl-modern-file-input {
  position: absolute;
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
}

.surfl-custom-file-label:hover {
}

.surfl-browse-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  margin-left: 1em;
}

.surfl-browse-btn::before {
  content: "↑";
  font-size: 18px;
  transform: rotate(45deg);
  display: inline-block;
}

.surfl-browse-btn:hover {
  transform: translateY(-1px);
}

.surfl-drag-text {
  font-weight: 500;
}

.surfl-modern-file-input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  padding: 0 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.surfl-modern-file-input::before {
  content: attr(data-text);
  display: inline-block;
  padding: 12px;
  pointer-events: none;
}

.surfl-upload-status-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

.surfl-upload-status-message:empty {
  display: none;
}
.surfl-custom-file-label.surfl-file-selected {
  animation: fileSelected 0.4s ease;
}

.surfl-custom-file-label.surfl-file-selected .surfl-drag-text::after {
  content: " ✓";
  font-weight: 700;
  margin-left: 0.5em;
}

@keyframes fileSelected {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

/* Styles for db file upload and restore */

/* styles for search replace history*/
.surfl-history-container {
  overflow-x: auto;
}

.surfl-badge {
  display: inline-block;
  padding: 3px 6px;

  font-size: 0.75em;
  font-weight: 600;
  text-transform: capitalize;
}

.surfl-col-date {
  font-size: 11px;
}

.surfl-col-tables {
  font-size: 0.85em;
}

.surfl-changes-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
  backdrop-filter: blur(5px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  z-index: 1000;
}

.surfl-changes-modal-content {
  margin-inline: auto;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  border-radius: 8px;
  position: relative;
}

.surfl-changes-scroll-container {
  max-height: 70vh;
  overflow-y: auto;
  margin-block: 20px;
  border-radius: 6px;
}

.surfl-changes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.surfl-content-box {
  padding: 0 15px;
}

.surfl-original-content h1 {
  font-weight: bold;
  margin-bottom: 15px;
}

.surfl-modified-content h1 {
  font-weight: bold;
  margin-bottom: 15px;
}

.surfl-change-item {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 4px;
}
.surfl-change-item-label {
  font-size: 1.2em;
  text-align: center;
  font-weight: bolder;
}
.surfl-change-item small {
  font-weight: bold;
}
.surfl-change-item:not(:last-child) {
  padding-bottom: 10px;
}
.surfl-highlight-search {
  padding: 2px 4px;
  border-radius: 3px;
}

.surfl-highlight-replace {
  padding: 2px 4px;
  border-radius: 3px;
}

.surfl-content-text {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 8px 0;
  font-family: monospace;

  padding: 8px;
  border-radius: 4px;
}
/* styles for search replace history End*/

/* styles for plugin update */
#surfl-plugin-update-spinner {
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modern Sidebar Navigation */
/* Apply smooth transition */
.surfl-side-navs {
  display: flex;
  flex-direction: column;
  height: fit-content;
  transition: width 0.4s ease; /* animate width */
}

.surfl-nav-layout {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  backdrop-filter: blur(16px); /* lg = 16px */

  transition: grid-template-columns 0.4s ease; /* animate layout change */
}

/* Main content */
.surfl-main-content {
  border-radius: 12px;
}

/* ========================================
   SPA-Style Tab Switching
   ======================================== */

/* Content Container - Prevents flicker on load */
#surfl-persist-content {
  position: relative;
  min-height: 600px;
  opacity: 0; /* Hidden initially to prevent flicker */
  transition: opacity 0.4s ease;
}

/* Reveal container once correct tab is loaded */
#surfl-persist-content.surflink-ready {
  opacity: 1;
}

/* Tab Panes - All stacked but only one visible */
.surfl-tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 600px;

  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  z-index: 0;
  pointer-events: none; /* Prevent interaction with hidden tabs */
}

/* Active Tab Pane */
.surfl-tab-pane.active {
  opacity: 1;
  position: relative;
  transform: translateY(0) scale(1);
  z-index: 10;
  pointer-events: auto; /* Re-enable interaction */
}

/* ========================================
   Loading Animation for Tab Switching
   ======================================== */

/* Loading overlay */
.surfl-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}

.surfl-loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modern spinner */
.surfl-spinner {
  width: 40px;
  height: 40px;
  position: relative;
}

.surfl-spinner::before,
.surfl-spinner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: surfl-spin 1.2s linear infinite;
}

.surfl-spinner::before {
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #009efd;
  border-left-color: #009efd;
}

.surfl-spinner::after {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border: 3px solid transparent;
  border-top-color: #3b82f6;
  border-right-color: #3b82f6;
  animation-direction: reverse;
  animation-duration: 0.8s;
}

@keyframes surfl-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Loading text (optional) */
.surfl-loading-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.3px;
  animation: surfl-pulse 1.5s ease-in-out infinite;
}

@keyframes surfl-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Nav item */
.surfl-side-nav {
  display: flex !important;
  align-items: center !important;
  padding: 10px 15px !important;
  text-decoration: none !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  gap: 4px;
}

.surfl-side-nav-active {
  /* background: #f0f4ff !important; */
  font-weight: 600;
}

/* Icon box */
.surfl-side-nav-icon {
  width: 28px;
  height: 28px;

  /* background: #f0f4ff; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.surfl-side-nav-icon .dashicons {
  width: 29px;
}

.surfl-side-nav-label {
  font-size: 12px;
  line-height: 1.2;
}

/* --- Expanded / Collapsed states --- */

/* Default hidden state (collapsed) */
.surfl-side-nav-label {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px); /* slight slide-in effect */
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  white-space: nowrap; /* prevent wrapping */
}

.surfl-side-nav:hover {
  backdrop-filter: blur(5px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
}

/* Show labels on hover in collapsed state */
.surfl-side-navs:not(.surfl-sidebar-expanded)
  .surfl-side-nav:hover
  .surfl-side-nav-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Show labels when expanded */
.surfl-side-navs.surfl-sidebar-expanded .surfl-side-nav-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* collapsed width */
.surfl-side-navs {
  width: 80px;
  z-index: 999;
}

/* Toggle Button - styled like a regular nav item */
.surfl-sidebar-toggle {
  display: flex !important;
  align-items: center !important;
  padding: 10px 15px !important;
  text-decoration: none !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}

.surfl-sidebar-toggle:hover {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.surfl-sidebar-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.surfl-sidebar-toggle-icon .dashicons {
  width: 29px;
  font-size: 18px;
  transition: transform 0.3s ease;
  transform: rotate(180deg); /* Point right when collapsed */
}

.surfl-sidebar-toggle-label {
  font-size: 12px;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  white-space: nowrap;
}
.surfl-sidebar-toggle:hover .surfl-sidebar-toggle-label {
  font-weight: 600;
}
/* Show label on hover in collapsed state */
.surfl-side-navs:not(.surfl-sidebar-expanded)
  .surfl-sidebar-toggle:hover
  .surfl-sidebar-toggle-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Show label when expanded */
.surfl-side-navs.surfl-sidebar-expanded .surfl-sidebar-toggle-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Expanded State Class (applied to sidebar) */
.surfl-side-navs.surfl-sidebar-expanded {
  width: 200px;
}

/* Rotate icon when expanded */
.surfl-side-navs.surfl-sidebar-expanded .surfl-sidebar-toggle-icon .dashicons {
  transform: rotate(0deg); /* Point left when expanded */
}

/* Update grid layout when expanded */
.surfl-nav-layout.surfl-layout-expanded {
  grid-template-columns: 200px 1fr;
}

/* Hide premium lock icons when sidebar is collapsed */
/* Only target lock icons that are NOT inside the icon wrapper (main icons) */
.surfl-side-navs:not(.surfl-sidebar-expanded)
  .surfl-side-nav
  > .dashicons-lock {
  display: none;
}

/* Additional Options */

.surfl-checkbox-group {
  margin-bottom: 15px;
  padding: 5px;
  border-radius: 8px;
  background: transparent;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.surfl-checkbox-group:hover {
  transform: translateX(5px);
}

.surfl-checkbox-group input[type="checkbox"] {
  appearance: none;
  /* width: 19px;
  height: 19px; */

  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 12px;
}

.surfl-checkbox-group input[type="checkbox"]:checked:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 2px;
  height: 7px;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.surfl-checkbox-group label {
  cursor: pointer;
  vertical-align: middle;
  transition: color 0.3s ease;
}
button.surfl-toggle-options-btn {
  border: none;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}
.surfl-toggle-options-btn .dashicons {
  vertical-align: middle;
  font-size: 16px;
}

/*Equal cols*/
.surfl-equal-cols {
  table-layout: fixed;
  width: 100%;
}

.surfl-equal-cols td {
  vertical-align: top;
}

/*TOOL TIP START*/
.surfl-tooltip-wrapper,
.surfl-q-tooltip-wrapper,
.surfl-i-tooltip-wrapper {
  cursor: help;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}
.surfl-tooltip-wrapper {
  position: absolute;
  top: 3px;
  right: 27px;
}

.surfl-tooltip-wrapper strong .dashicons,
.surfl-q-tooltip-wrapper strong .dashicons,
.surfl-i-tooltip-wrapper strong .dashicons {
  font-size: 18px;
}

.surfl-tooltip-text,
.surfl-q-tooltip-text,
.surfl-q-tooltip-text-bottom,
.surfl-i-tooltip-text {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  position: absolute;
  z-index: 999;
}

.surfl-tooltip-text,
.surfl-q-tooltip-text {
  width: 195px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;

  bottom: 125%;
  left: 50%;
}
.surfl-q-tooltip-text-bottom {
  width: 195px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;

  top: 125%;
  left: 50%;
}
.surfl-i-tooltip-text {
  width: 300px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  bottom: 125%;
  left: 50%;
}

.surfl-tooltip-wrapper:hover .surfl-tooltip-text,
.surfl-q-tooltip-wrapper:hover .surfl-q-tooltip-text,
.surfl-q-tooltip-wrapper:hover .surfl-q-tooltip-text-bottom,
.surfl-i-tooltip-wrapper:hover .surfl-i-tooltip-text {
  visibility: visible;
  opacity: 1;
}

/*TOOL TIP END*/

.surfl-boundary {
  width: 100%;
  max-width: 1600px;
}
.surfl-table-report {
  margin-top: 5px;
  border-collapse: collapse;
  width: 100%;
  max-width: 1600px;
  border-radius: 8px;
  /* overflow: hidden; */
  font-size: 14px;
  color: #363636;
}

.surfl-bulk-actions-container,
#surfl-upload-restore-form {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
.surfl-bulk-actions-container {
  margin-bottom: 15px;
}
.surfl-report-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.surfl-table-report th,
.surfl-table-report td {
  padding: 12px 16px;
  text-align: left;
}

.surfl-table-report tbody tr:hover {
  transition: background-color 0.3s ease;
}

.surfl-table-report code {
  font-family: Consolas, monospace;
  padding: 2px 4px;
  border-radius: 4px;
}

.surfl-report-container {
  position: relative;
  padding: 24px;
  margin-top: 30px;
  border-radius: 12px;
  overflow-x: auto;
  animation: fadeIn 0.4s ease;
}

.surfl-report-container h2 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.surfl-report-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styles for the redirect edit modal */
.surfl-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 200vh;
  overflow: auto;
  background-color: rgba(247, 247, 247, 0.6);
  backdrop-filter: blur(5px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
}

.surfl-pro-modal {
  position: absolute;
  z-index: 9999;
  left: 2px;
  top: -17px;
  height: 100%;
  min-height: fit-content;
  width: 100%;
  background-color: rgba(247, 247, 247, 0.6);
  backdrop-filter: blur(5px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(3px); /* Safari support */
}

.surfl-modal-content {
  margin: auto;
  padding: 20px 30px;
  width: 420px;
  max-width: 95%;
  border-radius: 8px;
  animation: surflFadeIn 0.25s ease-in-out;
}
.surfl-pro-modal-content {
  padding: 20px 30px;
  width: 420px;
  max-width: 95%;
  border-radius: 8px;
  position: relative;
  margin: auto;
  margin-top: 0;
}

.surfl-gradient-red-btn {
  background: linear-gradient(135deg, #ff4e50, #f36f56, #ff6e7f);
  color: #fff;
  border: none;
  padding: 12px 21px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
}

.surfl-gradient-red-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ff1c1c, #ff4e50);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.surfl-gradient-red-btn:active {
  background: linear-gradient(135deg, #d60000, #ff1c1c);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

@keyframes surflFadeIn {
  from {
    opacity: 0;
    margin-top: 0;
  }
  to {
    opacity: 1;
    margin-top: 10%;
  }
}

/* Edit Link Modal Form Styles */
.surfl-edit-link-form {
  margin-top: 15px;
}

.surfl-form-group {
  margin-bottom: 15px;
}

.surfl-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.surfl-form-group input[type="text"],
.surfl-form-group input[type="url"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.surfl-form-group input:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 1px #0073aa;
}

.surfl-edit-link-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.surfl-btn-update {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.surfl-btn-update:hover {
  background-color: #005a87;
}

.surfl-btn-refresh {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.surfl-btn-refresh:hover {
  background-color: #545b62;
}

.surfl-btn-cancel {
  background-color: transparent;
  color: #6c757d;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.surfl-btn-cancel:hover {
  background-color: #f8f9fa;
  color: #333;
}

.surfl-modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}

.surfl-modal-close:hover,
.surfl-modal-close:focus {
  color: #000;
}

.surfl-modal-content h3 {
  margin-bottom: 15px;
  margin-top: 0;
}

.surfl-clean-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 10rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.surfl-white-button,
.surfl-version-tab {
  position: relative;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;

  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.surfl-white-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}

.surfl-white-button:hover {
  transform: translateY(-2px);
}

.surfl-white-button:hover::after {
  left: 100%;
}

.surfl-white-button:active {
  transform: translateY(1px);
}
.surfl-pattern-helper {
  position: absolute;
  bottom: -18px;
  left: 7px;
  font-weight: 600;
}

.surfl-format-helper {
  font-size: 0.85rem;
  position: absolute;
  bottom: -22px;
  left: 7px;
  font-weight: 600;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; /* adjust length */
}

.surfl-nav-divider {
  width: 80px; /* Match collapsed sidebar width */
  transition: width 0.4s ease;
}

/* Expand nav divider when sidebar is expanded */
.surfl-side-navs.surfl-sidebar-expanded .surfl-nav-divider {
  width: 200px; /* Match expanded sidebar width */
}

/* Bulk Actions Dropdown */
.surfl-bulk-action-select,
#surfl-redirect-new-type {
  border-radius: 10rem !important;
  padding: 6px 28px !important;
}

.surfl-status-container {
  width: fit-content;
  margin: 20px auto;
  max-width: 100%;
}

.surfl-status-item {
  display: none;
  align-items: center;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: left;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-height: fit-content;
  margin-block: 15px;
  max-width: 100%;
}

.surfl-status-item.surfl-show {
  display: flex;
  transform: translateY(0);
}

.surfl-status-icon {
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 50%;
}

.surfl-loading {
  animation: spin 1.5s linear infinite;
}

.surfl-status-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-wrap: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ------------------------------
  BROWSE CONTENT Modal styling
------------------------------- */
.surfl-browse-modal__backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  z-index: 9998;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.surfl-browse-modal__backdrop:not([hidden]) {
  opacity: 1;
}

.surfl-browse-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.surfl-browse-modal.is-open {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.surfl-browse-modal__dialog {
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(10px);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.surfl-browse-modal.is-open .surfl-browse-modal__dialog {
  transform: translateY(0);
}

.surfl-browse-modal__close,
.surfl-close-modal,
.surfl-modal-cross {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.surfl-browse-modal__close:hover,
.surfl-close-modal:hover,
.surfl-modal-cross:hover {
  transform: rotate(90deg);
}

/* Import Preview Modal Styles */
.surfl-settings-summary {
  line-height: 1.8;
}

.surfl-setting-badge {
  white-space: nowrap;
}

#surfl-preview-content {
  max-height: 500px;
  overflow-y: auto;
  margin: 16px 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  background: #f8fafc;
}

#surfl-preview-content .surfl-table-report {
  background: white;
  margin: 0;
}

#surfl-preview-content .surfl-table-report th,
#surfl-preview-content .surfl-table-report td {
  padding: 12px;
}

#surfl-preview-content .link-column {
  max-width: 400px;
  word-break: break-all;
}

#surfl-preview-content .settings-column {
  min-width: 300px;
}

.surfl-modal-notice {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}

@media (max-width: 1200px) {
  #surfl-preview-content {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  #surfl-autolink-preview-modal .surfl-modal-content {
    width: 95% !important;
    padding: 16px !important;
  }

  #surfl-preview-content {
    max-height: 300px;
    overflow-x: auto;
  }

  #surfl-preview-content .surfl-table-report {
    font-size: 12px;
  }

  #surfl-preview-content .surfl-table-report th,
  #surfl-preview-content .surfl-table-report td {
    padding: 8px;
  }
}

.surfl-browse-modal__body {
  position: relative;
  overflow: auto;
}

.surfl-zip-modal-title {
  position: relative;
  padding: 24px 24px 16px;
  margin: 0;
  font-size: 1.5rem;
}

/* ------------------------------
   Enhanced Tree styling
------------------------------- */
.surfl-zip-tree {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 8px;
  padding: 16px;
}

.surfl-tree-root,
.surfl-tree-root ul {
  list-style: none;
  margin: 0;
  padding-left: 24px;
}

.surfl-node {
  margin: 6px 0;
  position: relative;
  transition: transform 0.2s ease;
}

.surfl-node:active {
  transform: translateX(2px);
}

.surfl-node__label {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.surfl-node__label:hover {
}

.surfl-node__label:focus {
  outline: none;
}

/* Folder styling */
.surfl-folder > .surfl-node__label::before {
  content: "📁";
  font-size: 16px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.surfl-folder.is-open > .surfl-node__label::before,
.surfl-folder[aria-expanded="true"] > .surfl-node__label::before {
  content: "📂";
}

/* File styling */
.surfl-file > .surfl-node__label::before {
  content: "📄";
  font-size: 16px;
  margin-right: 10px;
  opacity: 0.8;
}

/* Arrow indicator */
.surfl-folder > .surfl-node__label::after {
  content: "▸";
  margin-left: auto;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.surfl-folder.is-open > .surfl-node__label::after,
.surfl-folder[aria-expanded="true"] > .surfl-node__label::after {
  content: "▾";
}

/* Children container */
.surfl-children {
  margin-left: 24px;
  padding-left: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.surfl-folder.is-open > .surfl-children,
.surfl-folder[aria-expanded="true"] > .surfl-children {
  max-height: 5000px;
  opacity: 1;
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Section Title */
.surfl-section-title {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.surfl-section-title h2,
.surfl-section-title h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.surfl-section-title h3 {
  font-size: 0.9rem;
}

.surfl-section-title p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Custom Confirm Modal Styles */
.surfl-custom-confirm-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
  backdrop-filter: blur(5px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  display: flex;
  align-items: center;
  justify-content: center;
}

.surfl-custom-confirm-content {
  background-color: #fefefe;
  border: 1px solid #888;
  margin: auto;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: surflConfirmFadeIn 0.3s ease-out;
}

@keyframes surflConfirmFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.surfl-custom-confirm-content h3 {
  color: #333;
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.surfl-custom-confirm-content p {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #555;
}

.surfl-custom-confirm-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.surfl-custom-confirm-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.surfl-custom-confirm-btn.confirm {
  /* Red for confirm */
  background-color: #dc3545; /* Red for confirm */
  color: white;
}
.surfl-custom-confirm-btn.confirm:hover {
  background-color: #c82333;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.surfl-custom-confirm-btn.cancel {
  background-color: #6c757d; /* Gray for cancel */
  color: white;
}

.surfl-custom-confirm-btn.cancel:hover {
  background-color: #5a6268;
  box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}
.surfl-gradient-red-btn {
  color: #fff;
  background: linear-gradient(135deg, #ff1c1c, #ff4e50);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.surfl-gradient-red-btn:hover {
  background: linear-gradient(135deg, #ff4e50, #f36f56, #ff6e7f);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.surfl-log-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-right: 5px;
}
.surfl-log-error {
  background: #d63638;
}
.surfl-log-warning {
  background: #f2a900;
}
.surfl-log-success {
  background: #008000;
}
.surfl-log-info {
  background: #2271b1;
}
.surfl-log-start,
.surfl-log-end {
  background: #673ab7;
}

.surfl-log-component {
  color: var(--surfl-primary-color-light);
  background: #f3f4f6;
  border-radius: 4px;
  padding: 1px 4px;
  font-weight: 600;
}

.surfl-module-card-footer {
  padding: 10px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.surfl-module-card-footer label {
  font-size: small;
  font-weight: 600;
  font-style: italic;
}

.surfl-bs-component-row {
  margin-bottom: 10px;
}

.surfl-bs-exclusion-panel {
  margin-left: 25px;
  margin-top: 5px;

  padding: 10px 15px;
  border-radius: 4px;
  max-width: 600px;
}

.surfl-bs-exclusion-label {
  font-style: italic;
  margin-top: 0;
  margin-bottom: 8px;
  color: #666;
  display: flex;
  /* Aligns text and icon */
  align-items: center;
}

/* --- NEW TOOLTIP CSS --- */
.surfl-bs-tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  margin-left: 6px;
  color: #2271b1;
  /* WordPress Blue */
}

.surfl-bs-tooltip .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.surfl-bs-tooltip .surfl-bs-tooltip-text {
  visibility: hidden;
  width: 280px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 4px;
  padding: 12px;
  position: absolute;
  z-index: 9999;
  /* Ensure it floats above everything */
  bottom: 140%;
  /* Position above the icon */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.surfl-bs-tooltip:hover .surfl-bs-tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* The little triangle arrow at the bottom of the tooltip */
.surfl-bs-tooltip .surfl-bs-tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* --- END TOOLTIP CSS --- */
.surfl-bs-exclusion-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.surfl-bs-exclusion-row input {
  width: 100%;
  max-width: 300px;
  border: 1px solid #d9d9d9;
  background: #fff !important;
}

.surfl-bs-remove-rule {
  color: #909090;
  cursor: pointer;
  margin-left: 8px;
  font-size: 18px;
  line-height: 1.5;
}

.surfl-bs-remove-rule:hover {
  color: #b32d2e;
}

/* 3. Typography */
.surfl-pro-modal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.surfl-pro-modal-content p {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* 4. Feature List */
.surfl-pro-modal-content .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem; /* Space between items */
  text-align: left;
  padding: 0 1rem;
}

.surfl-pro-modal-content .feature-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

/* 5. The Checkmark Icon */
.surfl-pro-modal-content .icon {
  width: 24px;
  height: 24px;
  margin-right: 1.25rem;
  flex-shrink: 0; /* Prevents icon from squishing */
  color: #38bdf8; /* The specific light blue color */
}

#surfl-backup-settings-form .form-table th,
#surfl-backup-settings-form .form-table td {
  vertical-align: top !important;
}

/* Modules */

.surfl-module-container {
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 20px;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

/* Card container */
.surfl-module-card {
  border-radius: 12px;

  overflow: hidden;
  max-width: 450px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.surfl-module-container .surfl-module-card {
  min-height: 217px;
}
.surfl-module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card header with gradient */
.surfl-module-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  position: relative;
  overflow: hidden;
}

.surfl-module-card-header h1 {
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--surfl-module-card-transition);
  position: relative;
  z-index: 1;
  margin: 0;
}

.surfl-module-card-header h1:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

.surfl-module-card-header h1.surfl-clickable a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.surfl-module-card-header h1.surfl-clickable a:hover {
  opacity: 0.8;
}

.surfl-module-desc {
  padding: 0 1rem;
  font-size: 0.88rem;
  font-weight: normal;
  overflow: hidden;
  transform: translateY(10px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    max-height 1s ease,
    visibility 0s 1s; /* delay hiding */
}

/* Modern Toggle Switch Styling */
.surfl-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}

.surfl-toggle:before {
  content: "";
  position: relative;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 14px;
  display: block;
  background: #9a9999;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.surfl-toggle-switch {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
  transition: all 0.2s ease;
}

.surfl-toggle-switch:before {
  content: "";
  position: absolute;
  display: block;
  margin: -18px;
  width: 56px;
  height: 56px;
  background: rgba(79, 46, 220, 0.5);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}

/* Sibling selector: input is before the label */
input:checked + .surfl-toggle:before {
  background: #947ada;
}

input:checked + .surfl-toggle .surfl-toggle-switch {
  background: #4f2edc;
  transform: translateX(20px);
  transition: all 0.2s ease;
}

input:checked + .surfl-toggle .surfl-toggle-switch:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Add a subtle shine effect to the card */
.surfl-module-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: var(--surfl-module-card-transition);
}

.surfl-module-card:hover::after {
  left: 100%;
}
.surfl-nav-link-active::after {
  background: var(--surfl-primary-bg-gradeint-dark);
}
.surfl-price-title {
  background: var(--surfl-primary-bg-gradeint-light);
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text; /* fallback for non-webkit */
  color: transparent;
}

.surfl-custom-notice-dismiss {
  position: absolute;
  top: 0;
  right: 1px;
  border: none;
  margin: 0;
  padding: 9px;
  background: 0 0;
  color: #787c82;
  cursor: pointer;
}
/* Wrapper for the help section */
.surfl-instructions-wrapper {
  margin-bottom: 20px;
  font-size: 13px;
}

/* The surfl-clickable-cell link */
.surfl-toggle-help {
  color: #2271b1;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.surfl-toggle-text-span:hover {
  color: #135e96;
  text-decoration: underline;
}

/* The hidden content box */
#surfl-csv-instructions {
  margin-top: 10px;
  padding: 12px;

  border: 1px solid #c5d7ed;
  border-radius: 4px;
  color: #3c434a;
}

.surfl-note {
  margin: 0 0 10px 0;
  font-style: italic;
}

/* Code snippet styling */
.surfl-code-example {
  padding: 8px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 10px !important;
  word-break: break-all;
}

.surfl-gradient-button {
  background: var(--surfl-btn-gradient-light);
  color: white;
  font-weight: 600;
  border-radius: 20px;
}
/*
******LIGHT STARTS
*/

#surfl-fast-forward-svg path {
  fill: var(--surfl-icon-bg-light) !important;
}

.surfl-pro-modal-content .feature-list {
  color: rgb(0, 84, 84);
}
.surfl-pro-modal-content p {
  color: gray;
}

.surfl-container,
.surfl-modal-content.surfl-group {
  background: white;
}
.surfl-module-card-footer label {
  color: var(--surfl-primary-color-light);
}

.surfl-container select:focus,
.surfl-container option:focus {
  outline: none;
  box-shadow: none;
  border-radius: 4px;
  border: 1px solid gray;
}
.surfl-container :is(input[type="checkbox"]) {
  border: 0.5px solid #323938;
}

/* General Styles */
.surfl-red-text {
  color: #ff0000 !important;
}
.surfl-blue-text {
  color: blue !important;
}
.surfl-green-text {
  color: green !important;
}

.surfl-url-label {
  background: #a4d2d2;
}



/* SR TABLE*/
.surfl-sr-container {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.surfl-label {
  color: var(--surfl-primary-color-light) !important;
}

.surfl-sr-table label {
  color: #000 !important;
}

.surfl-sr-table input[type="text"],
.surfl-sr-table input[type="url"],
.surfl-sr-table input[type="number"],
.surfl-sr-table select,
.surfl-sr-table textarea {
  border: 1px solid transparent !important;
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.surfl-sr-table input[type="text"]:focus,
.surfl-sr-table input[type="url"]:focus {
  border-color: #1a2a6c;
  box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.2);
  background: white;
}

.surfl-select-wrapper::after {
  color: #888;
}

.surfl-sr-table input::placeholder,
.surfl-sr-table select::placeholder {
  color: #aaa;
}

/* Stunning Select Styles */

.surfl-select-multiple {
  border: 2px solid #ddd;
  background: #f8f9fa;
}
.surfl-select-multiple:focus {
  border-color: #1a2a6c;
  box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.2);
  background: white;
}

.surfl-select-multiple option {
  color: black;
  border-bottom: 1px solid #eee;
}

.surfl-select-multiple option:hover {
  color: var(--surfl-primary-color-light);
}
select.surfl-select-multiple option:focus {
  background: #e3eeff;
  font-weight: 600;
  color: var(--surfl-primary-color-light);
}

.surfl-select-multiple option:checked {
  background: #e3eeff;
  font-weight: 600;
  color: var(--surfl-primary-color-light);
}

/* Custom scrollbar for select */

/* ✅ Firefox scrollbar styling */
.surfl-select-multiple {
  scrollbar-color: var(--surfl-primary-color-light) #f1f1f1; /* thumb | track */
}

.surfl-select-multiple::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.surfl-select-multiple::-webkit-scrollbar-thumb:hover {
  background: #1a2a6c;
}

.surfl-key-hint {
  border: 1px dashed #a4b6e0;
  color: #222;
}

.surfl-key-hint .surfl-key {
  color: black;
  background-color: transparent;
  border: 1px solid black;
}

.surfl-btn-sm {
  border: none;

  color: var(--surfl-primary-color-light);
  background: color-mix(in srgb, #16ddff 80%, transparent);
}
/* .surfl-table-report tbody tr:hover .surfl-cyan-sm-button {
  background: color-mix(in srgb, #fff 80%, transparent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  color: black;
} */
/* Checkbox styling */

.surfl-checkbox-group input[type="checkbox"]:checked + label {
  color: #1a2a6c;
}

/* Categories Section Styling */

.surfl-category-card,
.surfl-pro-modal-content,
.surfl-stat-box,
.surfl-status-item,
.surfl_redirect_option span .surfl-version-tab {
  background: color-mix(in srgb, #fff 80%, transparent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.surfl-category-card:hover,
.surfl-pro-modal-content:hover,
.surfl-version-tab:hover,
.surfl-stat-box:hover,
.surfl-status-item:hover,
.surfl_redirect_option:hover span {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #c0ccff;
}

.surfl-category-card.selected,
.surfl_redirect_option input[type="radio"]:checked ~ span {
  border: 1px solid #a4b6e0;
  box-shadow: none;
}

.surfl-category-icon {
  background: #e0e9ff;
  color: var(--surfl-primary-color-light);
}

.surfl-category-title,
.surfl-version-tab {
  color: var(--surfl-primary-color-light);
}

.surfl-category-description {
  color: #556;
}

.surfl-category-checkbox:checked + .surfl-category-card {
  border: 1px solid var(--surfl-primary-color-light);
}

.surfl-category-checkbox:checked + .surfl-category-card .surfl-category-icon {
  background: var(--surfl-primary-color-light);
  color: white;
}

/* Submit button */

/* Custom scrollbar for select */

.surfl-select-multiple::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.surfl-select-multiple::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #1a2a6c, #3a5fc5);
  border-radius: 10px;
}

.surfl-select-multiple::-webkit-scrollbar-thumb:hover {
  background: #1a2a6c;
}

/* OTP Modal Styling */
.surfl-modal,
.surfl-pro-modal {
  background: rgba(247, 247, 247, 0.6);
}

.surfl-modal-content {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.surfl-pro-modal-content {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.surfl-modal-close {
  color: #666;
}

.surfl-modal-close:hover {
  color: #333;
}

.surfl-modal-content h3 {
  color: #2c3e50;
}

.surfl-modal-content p {
  color: #7f8c8d;
}

.surfl-form-group label {
  color: #34495e;
}

#surfOtp {
  border: 2px solid #e0e0e0;
}

#surfOtp:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Upgrade to Pro Link */
.surfl-upgrade-pro-link {
  background: #f1c40f;
  color: #2c3e50 !important;
  transition: background 0.3s;
}

.surfl-upgrade-pro-link:hover {
  background: #f39c12;
  color: #fff !important;
}

/* Spam Notice */
.surfl-otp-info-message {
  color: #7f8c8d;
  background: #f8f9fa;
}

/* Bulk Actions Dropdown */

/* Pagination */
.surfl-pagination .surfl-tablenav-pages {
  background: rgba(255, 255, 255, 0.05);
}

.surfl-tablenav.top.surfl-bulk-actions {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glassmorphic Select Dropdown */

/* Option styling (can be minimal due to browser limitations) */

.surfl-tablenav option {
  color: #222;
  background: #fff;
}

.surfl-q-tooltip-wrapper,
.surfl-q-tooltip-wrapper .dashicons,
.surfl-i-tooltip-wrapper,
.surfl-i-tooltip-wrapper .dashicons {
  color: #2271b1 !important;
}
/* Glassmorphic Button */
.surfl-tablenav button {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.surfl-tablenav-pages a,
.surfl-tablenav-pages span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.surfl-tablenav-pages a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.surfl-white-text {
  color: white;
}

/* Modern Primary Nav Tabs styling */
.surfl-nav-tabs {
  background: var(--surfl-nav-bg-light);
}

.surfl-nav-tabs a {
  color: lightgray;
  transition: color 0.2s;
}

.surfl-nav-tabs a:focus,
.surfl-nav-tabs a:hover {
  border-color: #e1e1e1;
  color: white;
}
.surfl-nav-tabs {
  border-bottom: 1px solid transparent;
}

/* Default Primary tab style */
.surfl-nav-tabs a i.dashicons,
.surfl-nav-tabs a i.fa {
  transition: color 0.2s;
}
/* Active tab style */
.surfl-nav-tabs .surfl-nav-tab.surfl-nav-tab-active {
  color: #fff;
  border-bottom: 2px solid #41576a;
}

.surfl-plain-logo {
  color: white;
}

.surfl-bulk-select-btn button {
  background: #008fb3;
  border: white;
  color: white;
}

.surfl-form {
  background-color: #f7f7f7 !important;
}

/* Custom style for groups */
.surfl-group {
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: black;
}

.surfl-progress-bar {
  background: #008fb3;
  color: white;
}

.surfl-progress-text {
  color: white;
}
.surfl-progress-size {
  color: var(--surfl-primary-color-light) !important;
}

.surfl-log-container {
  color: var(--surfl-primary-color-light);
}

.surfl-modern-upload-card {
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid darkorchid;
}

.surfl-upload-title {
  color: #1f2937;
}

.surfl-upload-title:before {
  background: #2563eb;
}

.surfl-custom-file-label {
  border: 2px dashed #cbd5e1;
  color: #1f2937;
}

.surfl-custom-file-label:hover {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.05);
}

.surfl-browse-btn {
  background: #2563eb;
  color: white;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.surfl-browse-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.15);
}

.surfl-drag-text {
  color: #64748b;
}

.surfl-modern-file-input {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  color: #1f2937;
}

.surfl-modern-file-input:hover {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.05);
}

.surfl-custom-file-label.surfl-file-selected {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
}

.surfl-custom-file-label.surfl-file-selected .surfl-drag-text::after {
  color: #16a34a;
}

.surfl-badge-replace {
  color: rgb(183, 6, 6);
}

.surfl-badge-dryrun {
  color: #04852b;
}

.surfl-changes-modal {
  background: rgba(0, 0, 0, 0.5);
}

.surfl-changes-modal-content {
  background-color: white;
}

.surfl-original-content h1 {
  color: #dc3545;
}

.surfl-modified-content h1 {
  color: #28a745;
}
.surfl-light-cyan-bg {
  background-color: #eef5f5;
}
.surfl-original-content .surfl-content-box {
  border: 1px solid #ffcccc;
}

.surfl-modified-content .surfl-content-box {
  border: 1px solid #ccffcc;
}

.surfl-change-item small {
  color: #7f9191;
}
.surfl-highlight-search {
  background-color: #ffd6d6;
  border: 1px solid #ff4444;
}

.surfl-highlight-replace {
  background-color: #d6ffd6;
  border: 1px solid #44ff44;
}

/* Nav item */
.surfl-side-nav {
  border-left: 4px solid transparent !important;
}

.surfl-side-nav:hover {
  border-left-color: var(--surfl-primary-color-light);
}
.surfl-side-nav-label {
  color: var(--surfl-primary-color-light);
}
.surfl-side-nav:hover .surfl-side-nav-label {
  color: var(--surfl-primary-color-light) !important;
  font-weight: 600;
  background: white;
  padding: 1px 2px;
}
.surfl-side-nav-active {
  color: var(--surfl-primary-color-light) !important;
  border-left-color: var(--surfl-primary-color-light);
}
.surfl-side-nav-icon {
  color: #111;
}
/* Icon box */

.surfl-side-nav-active .surfl-side-nav-icon {
  color: #0973c9;
  background: color-mix(in srgb, #fff 80%, transparent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

button.surfl-toggle-options-btn {
  color: var(--surfl-primary-color-light);
}

/*Equal cols*/

/*TOOL TIP START*/

.surfl-tooltip-wrapper strong,
#surfl-backup-settings-form .form-table th,
.surfl-preview-log {
  color: var(--surfl-primary-color-light);
}
#surfl-backup-settings-form hr {
  border-top-color: lightgray !important;
  border-bottom-color: lightgray !important;
}
.surfl-tooltip-text,
.surfl-q-tooltip-text-bottom,
.surfl-q-tooltip-text {
  background-color: #fff;
  color: #686868;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.surfl-i-tooltip-text {
  background-color: white;
  color: black;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/*TOOL TIP END*/
.surfl-table-report {
  background: color-mix(in srgb, #fff 80%, transparent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.surfl-table-report :is(th, td) {
  border-bottom: 0.5px solid #e8e7e7;
}

.surfl-table-report tbody tr:hover {
  background-color: #f1efef;
}

.surfl-table-report code {
  background-color: #f0f0f0;
}

.surfl-report-close-btn {
  background: #f2f2f2;
  color: #666;
}

.surfl-report-close-btn:hover {
  background: var(--surfl-primary-color-light);
  color: #fff;
}

/* Styles for the redirect edit modal */

.surfl-pro-modal {
  background-color: rgba(255, 255, 255, 0.6);
}

.surfl-modal-content {
  border: 1px solid #ccc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.surfl-modal-content input[type="text"]:focus {
  border-color: #1a2a6c;
  box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.2);
  outline: none;
  background: white;
}
.surfl-modal-content input[type="text"]::placeholder {
  color: #aaa;
}

.surfl-gradient-red-btn {
  border-radius: 20px;
}
.surfl-gradient-red-btn:active {
  background: linear-gradient(135deg, #d60000, #ff1c1c);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.surfl-clean-btn {
  background: #ffffff;
  color: #333;
  border: 1px solid #ccc;

  font-weight: 600;
}

.surfl-clean-btn:hover {
  background: #e1e1e1;
  border-color: #bbb;
}

.surfl-white-button {
  color: #333;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.05),
    0 6px 6px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.surfl-white-button::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}

.surfl-white-button:hover {
  box-shadow:
    0 7px 14px rgba(0, 0, 0, 0.08),
    0 10px 10px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.surfl-white-button:active {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 3px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.surfl-lh-unban-button,
.surfl-lh-delete-button {
  background: color-mix(in srgb, #ffdcdc 80%, transparent);
  font-weight: 600;
  border: none;
  color: #ec0505;
}

.surfl-pattern-helper {
  color: #2845c5;
}
.surfl-format-helper {
  color: #20accd;
}
.surfl-nav-divider {
  border-bottom: 1px solid #f0d6d6;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.surfl-contactForm {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

/* Bulk Actions Dropdown */
.surfl-bulk-action-select,
#surfl-redirect-new-type {
  background: rgba(174, 116, 116, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.surfl-status-icon {
  color: var(--surfl-primary-color-light);
  background: color-mix(in srgb, #fff 80%, transparent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.surfl-stat-number {
  color: rgb(0, 77, 98);
}
.surfl-success {
  color: #2ecc71;
}
.surfl-error {
  color: red;
}

.surfl-410-description {
  background: white;
  color: var(--surfl-primary-color-light);
  font-style: italic;
}
/* ------------------------------
  BROWSE CONTENT Modal styling
------------------------------- */
.surfl-browse-modal__backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.surfl-browse-modal__dialog {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.surfl-browse-modal__close,
.surfl-modal-cross,
.surfl-close-modal {
  background: rgba(0, 0, 0, 0.05);
  color: #6c757d;
}

.surfl-browse-modal__close:hover,
.surfl-modal-cross:hover,
.surfl-close-modal:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

#surfl-zip-modal-title {
  color: #343a40;
  border-bottom: 1px solid #e9ecef;
  background: #07474d;
}

/* ------------------------------
   Enhanced Tree styling
------------------------------- */
.surfl-zip-tree {
  color: #495057;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.surfl-node__label:hover {
  background: #f1f3f9;
}

.surfl-node__label:focus {
  background: #e6f0fa;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3);
}

/* Folder styling */

/* File styling */

/* Arrow indicator */
.surfl-folder > .surfl-node__label::after {
  color: #868e96;
}

/* Children container */
.surfl-children {
  border-left: 1px solid #e9ecef;
}

/* Section Title */

.surfl-section-title h2,
.surfl-section-title h3 {
  color: var(--surfl-primary-color-light);
}

.surfl-section-title p {
  color: #4a9da5;
}

/* Responsive adjustments */

.surfl-rules-info-icon:hover {
  color: #156203;
}

/* Custom Confirm Modal Styles */
.surfl-custom-confirm-modal {
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

.surfl-custom-confirm-content {
  background-color: #fefefe;
  border: 1px solid #888;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.surfl-custom-confirm-content h3 {
  color: #333;
}

.surfl-custom-confirm-content p {
  color: #555;
}

.surfl-custom-confirm-btn.confirm {
  background-color: #dc3545; /* Red for confirm */
  color: white;
}

.surfl-custom-confirm-btn.confirm:hover {
  background-color: #c82333;
  box-shadow: 0 44px 10px rgba(220, 53, 69, 0.3);
}

.surfl-custom-confirm-btn.cancel {
  background-color: #6c757d; /* Gray for cancel */
  color: white;
}
.surfl-container .notice p {
  color: black;
}
.surfl-custom-confirm-btn.cancel:hover {
  background-color: #5a6268;
  box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}
.surfl-container button:hover {
  transform: translateY(-1px);
}

@media (min-width: 2200px) {
  .surfl-tab-content-area {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
}

.surfl-module-card {
  background: color-mix(in srgb, #fff 80%, transparent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.surfl-module-card-header h1 {
  color: var(--surfl-secondary-color-light);
}

input:checked + .surfl-toggle:before {
  background: #947ada;
}

input:checked + .surfl-toggle .surfl-toggle-switch {
  background: #4f2edc;
  transform: translateX(20px);
}

/*
******LIGHT ENDS HERE******
*/

/* Responsive adjustments */

/* MAX-WIDTH */

@media (max-width: 640px) {
  .surfl-upload-container {
    flex-direction: column;
  }

  .surfl-modern-file-input {
    width: 100%;
  }

  #surfl-redirect-option-form .surfl-sr-table .surfl-flex-between {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 728px) {
  .surfl-section-title h2,
  .surfl-plain-logo {
    font-size: 1.5rem;
  }
  .surfl-nav-tabs-background {
    gap: 12px;
    padding: 0;
    padding-bottom: 3px;
  }

  .surfl-manage-backup-button {
    margin-bottom: 4px;
  }

  .surfl-table-report {
    font-size: 11px !important;
  }

  .surfl-custom-file-label {
    border: none !important;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .surfl-upload-container {
    flex-direction: column;
  }
  .surfl-file-input-wrapper {
    margin-bottom: 16px;
  }
}

@media (max-width: 782px) {
  .surfl-container input[type="checkbox"] {
    width: fit-content !important;
    height: 16px !important;
  }

  .surfl-checkbox-group input[type="checkbox"]:checked::before {
    width: 22px !important;
    height: 7px !important;
  }
  .surfl-modal-content input[type="checkbox"]:checked::before {
    width: 22px !important;
    height: 7px !important;
  }
}

@media (max-width: 868px) {
  .surfl-grid-cols-2 {
    grid-template-columns: 1fr; /* Stack in one column */
  }

  .surfl-nav-layout {
    grid-template-columns: 80px 1fr;
  }

  .surfl-side-nav-label {
    opacity: 0;
    visibility: hidden;
  }

  .surfl-nav-divider {
    width: 80px;
  }

  /* Force collapsed state on mobile */
  .surfl-side-navs.surfl-sidebar-expanded {
    width: 80px;
  }

  .surfl-side-navs.surfl-sidebar-expanded .surfl-side-nav-label {
    opacity: 0;
    visibility: hidden;
  }

  .surfl-nav-layout.surfl-layout-expanded {
    grid-template-columns: 80px 1fr;
  }

  /* Hide toggle button on mobile */
  .surfl-sidebar-toggle {
    display: none !important;
  }

  .surfl-status-item {
    min-width: 300px;
  }
}

@media (max-width: 1107px) {
  .surfl-stats-grid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }

  table.surfl-table-report .surfl-flex-start {
    flex-direction: column !important;
    align-items: center !important;

    gap: 4px !important;
  }

  .surfl-arrow-indicator .surfl-desktop-arrow {
    display: none;
  }

  .surfl-equal-cols td {
    display: block;
    width: 100%;
    position: relative;
  }

  .surfl-equal-cols .surfl-arrow-indicator {
    position: absolute;
  }

  .surfl-equal-cols .surfl-arrow-indicator {
    margin: 10px 0;
  }

  .surfl-label {
    display: block;
    width: fit-content;
  }

  .surfl-sr-table td {
    display: block;
    width: 98%;
  }

  .submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .surfl-categories-grid {
    grid-template-columns: 1fr;
  }
}


/* MIN-WIDTH */
@media (min-width: 1000px) {
  .surfl-equal-cols td:first-child,
  .surfl-equal-cols td:last-child {
    width: calc(100% - 50px);
  }

  .surfl-equal-cols .surfl-arrow-indicator {
    width: 50px;
    text-align: center;
  }
  .surfl-arrow-indicator .surfl-desktop-arrow {
    position: relative;
    top: 22px;
  }

  .surfl-nav-tabs {
    padding-right: 20px !important;
  }
  .surfl-tab-content-area {
    padding-right: 20px !important;
  }
}

@media (min-width: 1500px) {
  .surfl-sr-table,
  .surfl-boundary,
  .surfl-table-report,
  .surfl-bulk-actions-container {
    margin: auto;
  }

  .surfl-nav-tabs {
    padding-right: 30px !important;
  }
  .surfl-tab-content-area {
    padding-right: 30px !important;
  }
}

@media (min-width: 2200px) {
  .surfl-container {
    padding-top: 20px !important;
  }
}

/* Pending upload notice styling */
.surfl-pending-upload-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;

  border-left: 4px solid #009dff;
  border-radius: 4px;
  font-weight: 500;
}

.surfl-pending-upload-notice .dashicons {
  color: #009dff;
}

.surfl-pending-upload-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.surfl-surfl-bubble-check-container {
  max-width: 640px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
}

ul.surfl-bubble-check {
  list-style: none;
  padding: 20px;
}

ul.surfl-bubble-check li {
  display: inline;
}

ul.surfl-bubble-check li label {
  display: inline-block;
  color: var(--surfl-primary-color-light);
  background: color-mix(in srgb, #fff 80%, transparent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

  border-radius: 25px;
  white-space: nowrap;
  margin: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s;
}

ul.surfl-bubble-check li label {
  padding: 8px 12px;
  cursor: pointer;
}

ul.surfl-bubble-check li label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  padding: 2px 6px 2px 2px;
  content: "\292C";
  transition: transform 0.3s ease-in-out;
}

ul.surfl-bubble-check li input[type="checkbox"]:checked + label::before {
  content: "\1F5F8";
  transform: rotate(-360deg);
  transition: transform 0.3s ease-in-out;
}

ul.surfl-bubble-check li input[type="checkbox"]:checked + label {
  border: 1px solid #fff;
  background: linear-gradient(90deg, #315abb, #2812c1 90%);
  color: #fff;
  transition: all 0.2s;
  box-shadow: none;
}

ul.surfl-bubble-check li input[type="checkbox"] {
  display: absolute;
}

ul.surfl-bubble-check li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

ul.surfl-bubble-check li input[type="checkbox"]:focus + label {
  border: 2px solid #d3d3d3;
}

/* Minus Plus */
.surfl-minus-plus-container input[type="checkbox"] {
  opacity: 0 !important;
}

.surfl-minus-plus {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
  position: relative;
}

.surfl-minus-plus:hover {
  font-weight: 600;
}

.surfl-minus-plus .mp-box {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #f59e0b;
  border-radius: 6px;
  margin-right: 12px;
  transition: all 0.3s ease;
} /* Override WordPress native .check-column label styles */
.surfl-table-report .check-column label.surfl-minus-plus,
.surfl-table-report .check-column label.surfl-slide-reveal {
  display: flex !important;
  align-items: center !important;

  width: auto !important;
  height: auto !important;
  padding: 4px !important;
  margin: 0 !important;
}

.surfl-table-report .check-column .surfl-minus-plus-container,
.surfl-table-report .check-column .surfl-slide-reveal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Remove margin-right for check-column checkboxes to center them properly */

.surfl-minus-plus .mp-box::before,
.surfl-minus-plus .mp-box::after {
  content: "";
  position: absolute;
  background: #f59e0b;
  transition: all 0.3s ease;
}

.surfl-minus-plus .mp-box::before {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.surfl-minus-plus .mp-box::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%) scale(0);
}

input[type="checkbox"]:checked + .surfl-minus-plus .mp-box {
  background: #f59e0b;
  border-color: #f59e0b;
}

input[type="checkbox"]:checked + .surfl-minus-plus .mp-box::before,
input[type="checkbox"]:checked + .surfl-minus-plus .mp-box::after {
  background: white;
}

input[type="checkbox"]:checked + .surfl-minus-plus .mp-box::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Style 5: Slide Reveal */

.surfl-slide-reveal-container input[type="checkbox"] {
  opacity: 0 !important;
}

.surfl-slide-reveal {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.surfl-slide-reveal:hover {
  background: #f8fafc;
}

.surfl-slide-reveal .slide-box {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #008fb3;
  border-radius: 6px;
  margin-right: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.surfl-slide-reveal .slide-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #008fb3;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.surfl-slide-reveal .slide-box::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
  z-index: 1;
}

input[type="checkbox"]:checked + .surfl-slide-reveal .slide-box::after {
  transform: translateX(0);
}

input[type="checkbox"]:checked + .surfl-slide-reveal .slide-box::before {
  transform: rotate(45deg) scale(1);
}

.surfl-cbx-label-text {
  color: #475569;
  font-size: 0.95rem;
  flex: 1;
}

.surfl-table-report span.mp-box {
  position: absolute;
  top: 10px;
  left: 10px;
}

.surfl-table-report span.slide-box {
  position: absolute;
  top: 13px;
  left: 10px;
}

/*
******DARK STARTS
*/
/* @media (prefers-color-scheme: dark) {
  .surfl-container,
  .surfl-group,
  .surfl-modal-content,
  .surfl-pro-modal-content,
  .surfl-loading-overlay {
    background: var(--surfl-primary-bg-dark);
    color: lightgray;
  }

  .surfl-module-card-header,
  .surfl-module-card-footer {
    border-bottom-color: #000;
    border-top-color: #000;
  }
  .surfl-module-card-header h1,
  .surfl-module-card-footer p {
    color: white;
  }

  #surfl-fast-forward-svg path {
    fill: var(--surfl-icon-bg-dark) !important;
  }

  @media (min-width: 2200px) {
    .surfl-tab-content-area {
      box-shadow: 0 2px 6px rgb(0, 0, 0);
    }
  }

  .surfl-container h1,
  .surfl-container h2,
  .surfl-container h3,
  .surfl-container a,
  #surfl-csv-instructions {
    color: lightgrey;
  }
  .surfl-container :is(input, textarea, select, select[multiple]) {
    background-color: black;
    color: lightgray;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 0.5px solid black;
  }
  .surfl-container a:focus,
  .surfl-container input:focus,
  .surfl-container select:focus,
  .surfl-container textarea:focus,
  .surfl-container option:focus {
    outline: none;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid gray;
  }
  .surfl-container :is(input[type="checkbox"]) {
    border: 0.5px solid #323938;
  }
  .surfl-nav-tabs {
    background: var(--surfl-nav-bg-dark);
  }
  .surfl-nav-tabs .surfl-nav-tab.surfl-nav-tab-active {
    color: #fff;
    border-bottom: 2px solid var(--surfl-secondary-color-dark);
    border-radius: 10px;
  }
  .surfl-version-tab {
    background: black;
    color: white;
  }
  .surfl-nav-divider {
    border-bottom: 1px solid #013f3c;
    box-shadow: 0 2px 2px rgba(18, 191, 142, 0.15);
  }

  .surfl-contactForm {
    box-shadow: 0 2px 2px rgba(18, 191, 142, 0.15);
  }
  .surfl-side-nav-active .surfl-side-nav-icon {
    background: var(--surfl-secondary-bg-dark);
    color: var(--surfl-secondary-color-dark);
  }

  .surfl-progress-size,
  .surfl-preview-log,
  .surflp-heading-2,
  .surfl-section-title h2,
  .surfl-section-title h2,
  .surfl-section-title h3 {
    color: var(--surfl-secondary-color-dark) !important;
  }

  .surfl-preview-log,
  .surfl-label,
  .surfl-q-tooltip-wrapper,
  .surfl-q-tooltip-wrapper .dashicons,
  .surfl-tooltip-wrapper,
  #surfl-backup-settings-form .form-table th,
  .surfl-toggle-options-btn {
    color: var(--surfl-primary-color-dark) !important;
  }
  #surfl-backup-settings-form hr {
    border-top-color: black !important;
    border-bottom-color: black !important;
  }
  .surfl-nav-tabs {
    border-bottom: 1px solid rgb(66, 65, 65);
  }

  .surfl-progress-bar {
    background-color: var(--surfl-secondary-color-dark);
  }

  .surfl-q-tooltip-text,
  .surfl-q-tooltip-text-bottom,
  .surfl-progress-container,
  .surfl-tooltip-text,
  .surfl-changes-container,
  .surfl-key-hint {
    background-color: black;
  }
  .surfl-410-description {
    background: #151515;
  }
  .surfl-select-multiple option {
    background: black;
    color: lightgray;
  }
  .surfl-changes-modal-content {
    background: var(--surfl-secondary-bg-dark);
  }

  .surfl-key-hint .surfl-key {
    background: var(--surfl-secondary-bg-dark);
    color: var(--surfl-secondary-color-dark);
    font-weight: 600 !important;
  }

  .surfl-container .notice p {
    color: black;
  }

  .surfl-table-report td,
  .surfl-table-report th {
    background-color: black;
    color: var(--surfl-primary-color-dark);
    border-bottom: 0.5px solid #1c1b1b;
  }

  .surfl-select-container.surfl-select-wrapper::after {
    content: "";
  }
  .surfl-input-group.surfl-select-wrapper::after {
    content: "";
  }



  .surfl-submitBtn,
  .surfl-category-checkbox:checked + .surfl-category-card {
    background: black;
    color: white;
    border: var(--surfl-primary-color-light);
  }

  .surfl-btn-sm {
    background: var(--surfl-primary-bg-dark);
    color: var(--surfl-primary-color-dark);
    border: var(--surfl-primary-color-light);
  }

  .surfl-side-nav:hover .surfl-side-nav-label {
    color: white;
    font-weight: 600;

    padding: 1px 2px;
  }

  .surfl-white-button,
  .surfl-clean-btn {
    background: #000000;
    color: white;
    border: var(--surfl-primary-color-light);
  }

  .surfl-lh-unban-button,
  .surfl-lh-delete-button {
    background: #151111;
    color: #ff0c0c;
    border: maroon;
    font-weight: 600;
  }
  .surfl-container button:hover {
    transform: translateY(-1px);
  }

  .surfl-status-icon {
    background: var(--surfl-secondary-bg-dark);
  }

  .surfl-highlight-replace {
    color: #ff3e3e;
    border: 0.5px solid #360404;
  }
  .surfl-highlight-search {
    color: green;
    border: 0.5px solid #043607;
  }

  .surfl-modern-upload-card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border: 1px solid darkorchid;
  }

  .surfl-upload-title {
    color: #1f2937;
  }

  .surfl-upload-title:before {
    background: #2563eb;
  }

  .surfl-custom-file-label {
    border: 2px dashed #525252;
    color: #1f2937;
  }

  .surfl-custom-file-label:hover {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.05);
  }

  .surfl-browse-btn {
    background: black;
    color: white;
    box-shadow: 0 2px 4px var(--surfl-primary-bg-dark);
  }

  .surfl-browse-btn:hover {
    background: var(--surfl-primary-bg-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px black;
  }

  .surfl-white-button {
    background: var(--surfl-primary-bg-dark);
    box-shadow: 0 4px 6px black;
  }

  .surfl-drag-text {
    color: #64748b;
  }

  .surfl-modern-file-input {
    border: 2px dashed #cbd5e1;
  }

  .surfl-modern-file-input:hover {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.05);
  }

  .surfl-bulk-select-btn button,
  .surfl-bulk-select-btn select {
    background: var(--surfl-primary-bg-dark);
    color: lightgray;
    border: 0.5px solid #565656;
  }
  .surfl-bulk-select-btn button:hover,
  .surfl-bulk-select-btn select:hover {
    background: #000000;
    color: white;
  }

  .surfl_redirect_option input[type="radio"]:checked ~ span,
  .surfl-browse-modal__close,
  .surfl-modal-cross,
  .surfl-close-modal {
    background: var(--surfl-secondary-bg-dark);
    color: #fff;
    font-weight: bold;
  }

  .surfl_redirect_option:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .surfl-browse-modal__close:hover,
  .surfl-close-modal:hover,
  .surfl-modal-cross:hover {
    background: rgb(38, 3, 3);
    color: white;
  }

  .surfl-category-card,
  .surfl-pro-modal-content,
  .surfl-stat-box,
  .surfl_redirect_option {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1);  
    border-radius: 12px; 
  }
  .surfl-category-icon {
    background-color: #081a1a;
  }
  .surfl-category-checkbox:checked + .surfl-category-card .surfl-category-icon {
    background-color: #081a1a;
  }

  .surfl-change-item small {
    color: gray;
  }

  .surfl-module-card {
    background: linear-gradient(45deg, #000, #222, #333);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #e9ecef;
  }
  .surfl-module-card h1,
  .surfl-module-card p {
    color: #f1f3f5;
  }

  .surfl-nav-link-active::after {
    background: var(--surfl-primary-bg-gradeint-dark);
  }
  .surfl-price-title {
    background: var(--surfl-primary-bg-gradeint-dark);
    font-size: 1.5rem;
    font-weight: 500;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text; 
    color: transparent;
  }

  input:checked + .surfl-toggle:before {
    background: #947ada;
  }

  input:checked + .surfl-toggle .surfl-toggle-switch {
    background: #4f2edc;
    transform: translateX(20px);
  }

  

/* ul.surfl-bubble-check li label {
    background-color: black;
    border: 2px solid #111;
    color: #fff;
  }

  ul.surfl-bubble-check li input[type="checkbox"]:checked + label {
    border: 2px solid #111;
  }

  .surfl-minus-plus .mp-box::before,
  .surfl-minus-plus .mp-box::after {
    background: #f59e0b;
  }

  input[type="checkbox"]:checked + .surfl-minus-plus .mp-box {
    background: #f59e0b;
    border-color: #f59e0b;
  }

  input[type="checkbox"]:checked + .surfl-minus-plus .mp-box::before,
  input[type="checkbox"]:checked + .surfl-minus-plus .mp-box::after {
    background: white;
  }

  .surfl-slide-reveal:hover {
    background: #f8fafc;
  }

  .surfl-slide-reveal .slide-box::after {
    background: #06b6d4;
  }

  .surfl-cbx-label-text {
    color: #b6c1d0;
  }

  .surfl-toggle-switch {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  }

  .surfl-nav-warning {
    background: #000;
    color: white;
    border: 1px solid #352600;
  }
}  */
/* DARK ENDS HERE */

select.surfl-text-selectbox {
  padding: 0px !important;
  width: fit-content;
  font-size: 15px;
  margin: 0 !important;
  margin-bottom: 0px;
  box-shadow: 0 0px 0px white !important;
  margin-bottom: 3px !important;
  border: none !important;
  font-weight: 600 !important;
  background: none !important;
  border-bottom: 2px solid #8f2bec !important;
  border-radius: 0px !important;
}

.surfl-button {
  color: #003647;
  font-size: 13px !important;
  background: white;
  font-weight: normal;
  display: inline-block;
  text-decoration: none;
  font-size: medium;
  line-height: 2.15384615;
  min-height: 30px;
  margin: 0;
  padding: 0 10px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  -webkit-appearance: none;
  border-radius: 3px;
  white-space: nowrap;
  box-sizing: border-box;
  border-color: #eaeaea;
}

.surfl-cyan-button {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: capitalize;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none !important;
  width: max-content;
}
.surfl-cyan-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008fb3;
  border-radius: 10rem;
  z-index: -2;
}
.surfl-cyan-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #013440;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.surfl-cyan-button:hover {
  color: #fff;
}
.surfl-cyan-button:hover:before {
  width: 100%;
}
.surfl-tomato-button {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: capitalize;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none !important;
  width: max-content;
}
.surfl-tomato-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ea3700;
  border-radius: 10rem;
  z-index: -2;
}
.surfl-tomato-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #400101;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.surfl-tomato-button:hover {
  color: #fff;
}
.surfl-tomato-button:hover:before {
  width: 100%;
}
.surfl-cyan-sm-button {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: capitalize;
  font-size: 0.7rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none !important;
  width: max-content;
  cursor: pointer;
}
.surfl-cyan-sm-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008fb3;
  border-radius: 10rem;
  z-index: -2;
}
.surfl-cyan-sm-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #02637b;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.surfl-cyan-sm-button:hover {
  color: white;
}
.surfl-cyan-sm-button:hover:before {
  width: 100%;
}
.surfl-settings-container {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #374151;
  /* Dark gray text */
  padding: 10px 5px;
}

/* Row Layout */
.surfl-setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
}

.surfl-setting-row.align-top {
  align-items: flex-start;
}

.surfl-setting-label {
  font-size: 15px;
  color: #4b5563;
  flex: 1;
  position: relative;
  padding-right: 20px;
}

.surfl-setting-row:hover .surfl-setting-label {
  color: #1a73e8;
}

.surfl-setting-controls {
  display: flex;
  align-items: center;
  position: relative !important;
  width: fit-content !important;
}

.surfl-setting-controls-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Special Text Styling */
.surfl-highlight-underline {
  border-bottom: 2px solid #a855f7;
  /* Purple border */
  padding-bottom: 2px;
}

/* Toggle Switch Component */
.surfl-setting-toggle-group {
  display: flex;
  align-items: center;
}

.surfl-setting-toggle-text {
  font-size: 15px;
  color: #374151;
  min-width: 80px;
  /* Aligns text in the vertical group */
}

/* Select Dropdown */
select.surfl-setting-select-control {
  padding: 8px 32px 8px 12px !important;
  font-size: 14px !important;
  color: #374151;
  background-color: transparent !important;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234b5563%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px auto;
  cursor: pointer;
}

.surfl-setting-select-control:focus {
  outline: none;
  border-color: #a855f7;
}

/* Base reset for preview (simulates your white plugin page) */
.surfl-banner-body {
  margin: 0;
  padding: 50px 20px;
  background-color: #ffffff;
}

/* --- SurfLink Premium Banner Styles (Light Theme) --- */
.surfl-banner {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  /* Soft, elegant gradient that blends beautifully into a white page */
  background: linear-gradient(135deg, #ffffff 0%, #f0f9fb 100%);
  color: #013440;
  /* Your deep brand color for text */
  padding: 60px 20px;
  border-radius: 16px;
  /* Rounded corners for a modern SaaS look */
  border: 1px solid rgba(0, 209, 255, 0.15);
  box-shadow: 0 10px 40px rgba(1, 52, 64, 0.04);
  overflow: hidden;
  z-index: 1;
}

/* Soft glowing background element (Abstract SaaS feel) */
.surfl-banner::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 209, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

.surfl-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.surfl-content-wrapper {
  text-align: center;
}

.surfl-banner-title {
  font-size: 36px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 40px;
  text-transform: capitalize;
  letter-spacing: 2px;
  color: #013440;
  line-height: 1.2;
}

/* Gradient Text for "Premium" */
.surfl-banner-title span {
  background: linear-gradient(135deg, #00d1ff, #0088cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.surfl-feature-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
}

/* Crisp White Pill Design with Soft Shadows */
.surfl-feature-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #013440;
  background: #ffffff;
  border: 1px solid rgba(1, 52, 64, 0.06);
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 4px 12px rgba(1, 52, 64, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
}

/* Stunning Hover Effect for Light Theme */
.surfl-feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 209, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 209, 255, 0.15);
  color: #0077bb;
  /* Darkens slightly on hover for readability */
}

/* Animated Accent Bullet */
.surfl-feature-item::before {
  content: "✦";
  color: #00d1ff;
  margin-right: 12px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.surfl-feature-item:hover::before {
  transform: rotate(90deg) scale(1.2);
}

/* --- CTA Button Styles --- */
.surfl-cta-wrapper {
  margin-top: 50px;
}

.surfl-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d1ff 0%, #0077ff 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
  transition: all 0.3s ease;
}

.surfl-cta-btn-arrow {
  margin-left: 10px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Button Hover Effects */
.surfl-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 119, 255, 0.4);
  filter: brightness(1.1);
  /* Makes the gradient pop more on hover */
  color: #ffffff;
}

.surfl-cta-btn:hover .surfl-cta-btn-arrow {
  transform: translateX(6px);
  /* Arrow slides right */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .surfl-banner {
    padding: 40px 15px;
    border-radius: 12px;
  }

  .surfl-banner-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .surfl-feature-list {
    gap: 12px;
  }

  .surfl-feature-item {
    font-size: 14px;
    padding: 10px 16px;
    width: calc(50% - 12px);
    justify-content: flex-start;
  }

  .surfl-cta-wrapper {
    margin-top: 40px;
  }

  .surfl-cta-btn {
    width: 100%;
    /* Full width button on mobile */
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .surfl-feature-item {
    width: 100%;
  }
}
