@charset "UTF-8";
/* SquareHero Dashboard - SCSS Styles */
/* Compiled to CSS for header injection deployment */
body {
  font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sh-dashboard {
  --sh-primary: #011E45;
  --sh-primary-light: #1E3A5F;
  --sh-primary-dark: #000F23;
  --sh-accent: #ff003d;
  --sh-success: #10B981;
  --sh-warning: #F59E0B;
  --sh-error: #EF4444;
  --sh-info: #3B82F6;
  --sh-gradient: linear-gradient(135deg, #011E45 0%, #1E3A5F 100%);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: 1fr;
  min-height: 100vh;
  padding: 40px 0;
  font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #011E45;
  background: #F3FCFE;
  background-image: linear-gradient(180deg, rgba(0, 209, 255, 0.1) 0%, rgba(255, 0, 230, 0.1) 31%, rgba(255, 0, 61, 0) 80%);
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.sh-dashboard .sh-sidebar,
.sh-dashboard .sh-main {
  display: none;
}
.sh-dashboard.sh-ready .sh-sidebar {
  display: flex;
}
.sh-dashboard.sh-ready .sh-main {
  display: block;
}
@media (max-width: 768px) {
  .sh-dashboard {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
}
.sh-dashboard *,
.sh-dashboard *::before,
.sh-dashboard *::after {
  box-sizing: inherit;
}
.sh-dashboard p,
.sh-dashboard ul,
.sh-dashboard ol {
  margin: 0;
}
.sh-dashboard a {
  color: inherit;
  text-decoration: none;
}
.sh-dashboard button {
  font-family: inherit;
  font-size: inherit;
}
.sh-dashboard input,
.sh-dashboard textarea,
.sh-dashboard select {
  font-family: inherit;
  font-size: inherit;
}
@media (max-width: 768px) {
  .sh-dashboard {
    padding: 20px 0;
  }
}

.sh-hidden {
  display: none !important;
}

.sh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sh-sidebar {
  grid-column: 1;
  grid-row: 1;
  width: 280px;
  height: calc(100% - 80px);
  background: linear-gradient(135deg, #011E45 0%, #1E3A5F 100%);
  color: #FFFFFF;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: fixed;
}
.sh-sidebar::after {
  content: "";
  position: absolute;
  width: 513px;
  height: 513px;
  top: -20%;
  left: -30%;
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.7) 0%, rgba(166, 3, 243, 0.7) 45.01%, rgba(255, 0, 230, 0.7) 97.51%);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(47px);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sh-sidebar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 280px;
    height: calc(100vh - 40px);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sh-sidebar.sh-sidebar-open {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .sh-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 0;
  }
  .sh-sidebar::before {
    border-radius: 0;
  }
}

.sh-sidebar-header {
  padding: 2rem 1.5rem;
  display: flex;
  z-index: 1;
  position: relative;
  margin-left: 20px;
}

.sh-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}
.sh-logo svg {
  height: 70px;
  width: auto;
}

.sh-nav {
  padding: 2rem 0;
  position: relative;
  flex: 1;
  min-height: 0;
  z-index: 1;
  margin: 0 20px;
}
.sh-nav::before {
  content: "";
  position: absolute;
  width: 354px;
  height: 354px;
  bottom: -50%;
  background: linear-gradient(180deg, #00D1FF 0%, #A603F3 45.01%, #FF00E6 97.51%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(47px);
  z-index: 0;
  pointer-events: none;
}

.sh-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  text-decoration: none;
  margin-bottom: 0.5rem;
  border-radius: 10px;
}
.sh-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.sh-nav-item.active {
  color: #FFFFFF;
}
.sh-nav-item span {
  font-weight: 500;
  font-size: 1rem;
}

.sh-nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sh-sidebar-footer {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  z-index: 1;
}

.sh-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sh-user-avatar {
  position: relative;
  width: 48px;
  height: 55px;
  flex-shrink: 0;
}
.sh-user-avatar svg {
  width: 100%;
  height: 100%;
}
.sh-user-avatar .sh-user-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.25rem;
  z-index: 2;
}

.sh-user-details {
  flex: 1;
  min-width: 0;
}
.sh-user-details h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-user-details p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sh-logout-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  font-size: 0.875rem;
}
.sh-logout-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.sh-logout-btn svg {
  width: 18px;
  height: 18px;
}

.sh-main {
  grid-column: 2;
  grid-row: 1;
  min-height: 100%;
}
@media (max-width: 768px) {
  .sh-main {
    grid-column: 1/-1;
  }
}

.sh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .sh-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.sh-header-left h1 {
  font-size: 1.875rem;
  color: #011E45;
  margin-bottom: 0.25rem;
}
.sh-header-left p {
  color: #4B5563;
  font-size: 1rem;
}

.sh-header-right {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .sh-header-right {
    width: 100%;
    justify-content: flex-start;
  }
}

.sh-content {
  padding: 2rem;
}
@media (max-width: 768px) {
  .sh-content {
    padding: 1.5rem;
  }
}

.sh-extension-prompt-card {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sh-extension-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #9CA3AF;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.sh-extension-close-btn:hover {
  background: #F9FAFB;
  color: #4B5563;
}

.sh-extension-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sh-usage-sidebar .header-title h2 {
  margin-bottom: 0;
}

.sh-extension-icon {
  margin-right: 16px;
  flex-shrink: 0;
}

.sh-extension-title-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #011E45;
  margin: 0 0 4px 0;
}

.sh-extension-subtitle {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.sh-extension-description {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 24px;
}

.sh-extension-features {
  font-weight: 600;
  margin: 20px 0;
}

.sh-extension-features-title {
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 12px 0;
}

.sh-extension-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4B5563;
}
.sh-extension-feature-item:last-child {
  margin-bottom: 0;
}

.sh-extension-check-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.sh-extension-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sh-extension-install-btn {
  background: #ff003d;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  width: 100%;
  align-items: center;
  gap: 8px;
}
.sh-extension-install-btn:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  color: #FFFFFF;
  background: #011E45;
  text-decoration: none;
}

.sh-extension-later-btn {
  background: none;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sh-extension-later-btn:hover {
  border-color: #D1D5DB;
  background: #F9FAFB;
}

.sh-extension-chrome-icon {
  width: 18px;
  height: 18px;
}

.sh-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.sh-sites-grid .sh-site-card .sh-site-info {
  max-width: 100%;
}
@media (max-width: 768px) {
  .sh-sites-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.sh-site-card {
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
}
.sh-site-card:hover {
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
}

.sh-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.sh-site-info {
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 200px);
}
.sh-site-info h3 {
  font-size: 1.125rem;
  color: #011E45;
  margin-bottom: 0.25rem;
  overflow: hidden;
  max-width: 100%;
}
.sh-site-info p {
  color: #4B5563;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sh-status-indicator {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.sh-status-indicator.sh-demo {
  padding: 3px 7px;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  background: rgba(255, 0, 61, 0.1);
  color: #FF003D;
}
.sh-status-indicator.sh-demo .sh-status-icon {
  width: 17px;
  height: 17px;
  border-radius: 17px;
  background: #FF003D;
  flex-shrink: 0;
}
.sh-status-indicator.sh-active {
  padding: 3px 7px;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  background: rgba(34, 162, 78, 0.1);
  color: #22A24E;
}
.sh-status-indicator.sh-active .sh-status-icon {
  width: 17px;
  height: 17px;
  border-radius: 17px;
  background: #22A24E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-status-indicator.sh-not-installed {
  padding: 3px 7px;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.sh-status-indicator.sh-not-installed .sh-status-icon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-status-indicator.sh-not-installed .sh-status-icon svg {
  width: 17px;
  height: 17px;
  fill: #F59E0B;
}

.sh-status-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.sh-status-badge.active {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.sh-status-badge.inactive {
  background: rgba(107, 114, 128, 0.1);
  color: #6B7280;
}
.sh-status-badge.pending {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

.sh-site-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.sh-site-actions button {
  min-width: 160px;
}

.sh-site-menu {
  position: relative;
  margin-left: 8px;
}
.sh-site-menu .sh-menu-button {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
}
.sh-site-menu .sh-menu-button:hover {
  background: #f5f5f5;
  color: #333;
}
.sh-site-menu .sh-menu-button svg {
  width: 16px;
  height: 16px;
}
.sh-site-menu .sh-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  z-index: 1000;
  display: none;
  overflow: hidden;
}
.sh-site-menu .sh-menu-dropdown.active {
  display: block;
}
.sh-site-menu .sh-menu-dropdown button {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.2s ease;
}
.sh-site-menu .sh-menu-dropdown button:hover {
  background: #f5f5f5;
}
.sh-site-menu .sh-menu-dropdown button:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.sh-empty-state {
  grid-column: 1/-1;
}
.sh-empty-state h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.sh-empty-state p {
  margin-bottom: 1.5rem;
}
.sh-empty-state .sh-getting-started-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 1rem 0 1.5rem 0;
  padding: 0;
}
.sh-empty-state .sh-getting-started-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
}
.sh-empty-state .sh-getting-started-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: #011E45;
  border-radius: 50%;
  border: solid 1px #011E45;
  font-weight: 600;
  font-size: 0.875rem;
}
.sh-empty-state .sh-getting-started-steps li:last-child {
  margin-bottom: 0;
}

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  min-width: 120px;
}
.sh-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.sh-btn svg {
  width: 16px;
  height: 16px;
  margin-right: 0.25rem;
}
.sh-btn.sh-btn-primary {
  background: #011E45;
  color: white;
  border: solid 1px #011E45;
}
.sh-btn.sh-btn-primary:hover:not(:disabled) {
  background: #ff003d;
  border: solid 1px #ff003d;
  color: white;
}
.sh-btn.sh-btn-outline {
  color: #011E45;
  background: transparent;
  border: 1px solid #011E45;
}
.sh-btn.sh-btn-outline:hover:not(:disabled) {
  background: rgba(1, 30, 69, 0.1);
  border-color: #011E45;
}
.sh-btn.sh-btn-gradient-outline {
  background: none !important;
  position: relative;
  z-index: 1;
  color: #011E45;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  font-family: "Red Hat Text", inherit;
  padding: 20px 30px;
  border-radius: 10px !important;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}
.sh-btn.sh-btn-gradient-outline:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(90deg, #00D1FF 0%, #FF00E6 33.33%, #FF003D 66.66%, #00D1FF 100%);
  background-size: 200% 100%;
  transition: background-position 0.5s ease;
}
.sh-btn.sh-btn-gradient-outline:hover:not(:disabled) {
  opacity: 1 !important;
  transform: none;
  box-shadow: none;
}
.sh-btn.sh-btn-gradient-outline:hover:not(:disabled):before {
  background-position: 150% 0;
}
.sh-btn.sh-btn-gradient-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sh-btn.sh-btn-secondary {
  background: #FFFFFF;
  color: #374151;
  border: 1px solid #D1D5DB;
}
.sh-btn.sh-btn-secondary:hover:not(:disabled) {
  background: #F9FAFB;
  border-color: #9CA3AF;
  transform: translateY(-1px);
}
.sh-btn.sh-btn-danger {
  background: #EF4444;
  color: #FFFFFF;
}
.sh-btn.sh-btn-danger:hover:not(:disabled) {
  background: rgb(234.9802955665, 21.0197044335, 21.0197044335);
  transform: translateY(-1px);
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
}
.sh-btn.sh-btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  min-width: 80px;
}
.sh-btn.sh-btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  min-width: 140px;
}

.sh-auth-fullpage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #011E45;
  overflow: hidden;
}
.sh-auth-fullpage::after {
  content: "";
  position: absolute;
  width: 513px;
  height: 513px;
  top: -20%;
  left: 0%;
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.7) 0%, rgba(166, 3, 243, 0.7) 45.01%, rgba(255, 0, 230, 0.7) 97.51%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(47px);
  z-index: 0;
  pointer-events: none;
}
.sh-auth-fullpage.sh-hidden {
  display: none;
}

.sh-auth-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.sh-auth-container::after {
  content: "";
  position: absolute;
  width: 536px;
  height: 536px;
  bottom: -20%;
  right: 0;
  background: linear-gradient(180deg, #00D1FF 0%, #A603F3 45.01%, #FF00E6 97.51%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(47px);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sh-auth-container {
    flex-direction: column;
  }
}

.sh-auth-left {
  flex: 1;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .sh-auth-left {
    min-height: 40vh;
  }
}

.sh-auth-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.sh-auth-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.sh-auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .sh-auth-right {
    padding: 1.5rem;
  }
}

.sh-auth-content {
  width: 100%;
  max-width: 500px;
  color: white;
}

.sh-auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.sh-auth-logo img {
  max-height: 100px;
  margin-bottom: 45px;
}
.sh-auth-logo h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: white;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .sh-auth-logo h1 {
    font-size: 2.5rem;
  }
}
.sh-auth-logo h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: white;
}
@media (max-width: 768px) {
  .sh-auth-logo h2 {
    font-size: 1.25rem;
  }
}
.sh-auth-logo p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .sh-auth-forms {
    padding: 1.5rem;
  }
}
.sh-auth-forms .sh-form-group label {
  display: none;
}
.sh-auth-forms .sh-form-group input {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #011E45;
  padding: 20px;
  border-radius: 12px;
  font-size: 1rem;
}
.sh-auth-forms .sh-form-group input:focus {
  background: white;
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.sh-auth-forms .sh-form-group input::-moz-placeholder {
  color: #6B7280;
}
.sh-auth-forms .sh-form-group input::placeholder {
  color: #6B7280;
}
.sh-auth-forms .sh-btn-gradient-outline {
  margin: 20px 0;
  width: 100%;
  font-size: 1rem;
  padding: 20px;
  color: white;
}
.sh-auth-forms .sh-auth-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.sh-auth-forms .sh-auth-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.sh-auth-forms .sh-auth-links a:hover {
  color: white;
  text-decoration: underline;
}
.sh-auth-forms .sh-auth-links:has(#sh-signin-link:only-child) {
  justify-content: center;
}
.sh-auth-forms .sh-divider {
  margin: 1.5rem 0;
  text-align: center;
  position: relative;
}
.sh-auth-forms .sh-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.sh-auth-forms .sh-divider span {
  background: #011E45;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  position: relative;
}
.sh-auth-forms .sh-loading-state {
  color: white;
}
.sh-auth-forms .sh-loading-state p {
  color: white;
}
.sh-auth-forms .sh-spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: white;
}

.sh-auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.sh-auth-header h2 {
  font-size: 1.5rem;
  color: #011E45;
  margin-bottom: 0.5rem;
}
.sh-auth-header p {
  color: #4B5563;
  font-size: 0.875rem;
}

.sh-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sh-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sh-form-group label {
  font-weight: 600;
  color: #011E45;
  font-size: 0.875rem;
}
.sh-form-group input {
  padding: 0.5rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sh-form-group input:focus {
  outline: none;
  border-color: #011E45;
  box-shadow: 0 0 0 3px rgba(1, 30, 69, 0.1);
}
.sh-form-group input::-moz-placeholder {
  color: #9CA3AF;
}
.sh-form-group input::placeholder {
  color: #9CA3AF;
}

.sh-form-row {
  display: flex;
  gap: 1rem;
}
.sh-form-row .sh-form-group {
  flex: 1;
}
@media (max-width: 480px) {
  .sh-form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.sh-floating-label {
  position: relative;
}
.sh-floating-label input {
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  background: transparent;
}
.sh-floating-label input:focus + label, .sh-floating-label input.has-content + label {
  transform: translateY(-1.5rem) scale(0.8);
  color: #011E45;
  background: white;
  padding: 0 0.25rem;
}
.sh-floating-label label {
  position: absolute;
  left: 0.5rem;
  top: 1.25rem;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  background: transparent;
  transform-origin: left top;
  z-index: 1;
}

.sh-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
  color: #4B5563;
  font-size: 0.875rem;
}
.sh-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #D1D5DB;
}
.sh-divider span {
  background: #FFFFFF;
  padding: 0 1rem;
}

.sh-onboarding-content-auth {
  text-align: center;
}
.sh-onboarding-content-auth.sh-hidden {
  display: none;
}
.sh-onboarding-content-auth .sh-onboarding-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0;
}
.sh-onboarding-content-auth .sh-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 48px;
  flex-shrink: 0;
}
.sh-onboarding-content-auth .sh-progress-step .sh-step-hexagon {
  width: 48px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-onboarding-content-auth .sh-progress-step .sh-step-hexagon svg {
  width: 48px;
  height: 55px;
}
.sh-onboarding-content-auth .sh-progress-step .sh-step-label {
  font-size: 12px;
  color: white;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  width: auto;
  min-width: -moz-max-content;
  min-width: max-content;
}
.sh-onboarding-content-auth .sh-progress-connector {
  height: 6px;
  width: 130px;
  background: #D9D9D9;
  transition: background 0.3s ease;
  align-self: flex-start;
  margin-top: 24px;
}
.sh-onboarding-content-auth .sh-progress-connector.sh-connector-active {
  background: linear-gradient(90deg, #FF003D 20.4%, #FF00E6 44.57%, #00D1FF 80.09%);
}
.sh-onboarding-content-auth .sh-onboarding-main {
  margin-bottom: 2rem;
}
.sh-onboarding-content-auth .sh-onboarding-main .sh-onboarding-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  margin-top: 60px;
  font-family: "Red Hat Display", sans-serif;
}
.sh-onboarding-content-auth .sh-onboarding-main .sh-onboarding-description {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.sh-onboarding-content-auth .sh-onboarding-main .sh-download-extension-btn {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  min-width: 200px;
}
.sh-onboarding-content-auth .sh-onboarding-footer .sh-btn-text {
  background: none;
  border: none;
  color: #6B7280;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.sh-onboarding-content-auth .sh-onboarding-footer .sh-btn-text:hover {
  color: #374151;
  background: #F3F4F6;
}

.sh-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: sh-skeleton-loading 1.5s infinite;
  border-radius: 4px;
}
.sh-skeleton.sh-skeleton-text {
  height: 16px;
}
.sh-skeleton.sh-skeleton-text.sh-skeleton-small {
  width: 60%;
  max-width: 120px;
}
.sh-skeleton.sh-skeleton-text.sh-skeleton-medium {
  width: 80%;
  max-width: 200px;
}
.sh-skeleton.sh-skeleton-text.sh-skeleton-large {
  width: 90%;
  max-width: 300px;
}
.sh-skeleton.sh-skeleton-badge {
  width: 70px;
  height: 20px;
  border-radius: 10px;
}
.sh-skeleton.sh-skeleton-button {
  width: 120px;
  height: 36px;
  border-radius: 8px;
}
.sh-skeleton.sh-skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.sh-skeleton.sh-skeleton-progress {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.sh-skeleton.sh-skeleton-number {
  width: 60px;
  height: 24px;
  border-radius: 4px;
}

@keyframes sh-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.sh-skeleton-dashboard .sh-dashboard-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sh-skeleton-dashboard .sh-dashboard-layout {
    flex-direction: column;
    gap: 1rem;
  }
}

.sh-skeleton-title-placeholder {
  visibility: hidden;
  background: transparent !important;
  animation: none !important;
}

.sh-skeleton-site-card {
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.sh-skeleton-site-card .sh-skeleton-site-info {
  flex: 1;
  min-width: 0;
}
.sh-skeleton-site-card .sh-skeleton-site-info .sh-skeleton-title {
  margin-bottom: 0.5rem;
}
.sh-skeleton-site-card .sh-skeleton-site-info .sh-skeleton-url {
  margin-bottom: 0.25rem;
}
.sh-skeleton-site-card .sh-skeleton-site-info .sh-skeleton-status {
  margin-top: 0.5rem;
}
.sh-skeleton-site-card .sh-skeleton-site-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.sh-skeleton-usage-card {
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sh-skeleton-usage-card .sh-skeleton-title {
  margin-bottom: 1rem;
}
.sh-skeleton-usage-card .sh-skeleton-subtitle {
  margin-bottom: 2rem;
}
.sh-skeleton-usage-card .sh-skeleton-progress-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.sh-skeleton-usage-card .sh-skeleton-button-container {
  text-align: center;
}

.sh-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3rem;
  color: #4B5563;
}
.sh-loading-state p {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.sh-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #D1D5DB;
  border-top-color: #011E45;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.sh-notification-system {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  pointer-events: none;
}
.sh-notification-system .sh-notification-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem 1.5rem 1.5rem;
  gap: 1rem;
}

.sh-notification {
  background: #011E45;
  border-radius: 8px;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
  min-width: 350px;
  max-width: 650px;
  width: auto;
  pointer-events: auto;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  overflow: hidden;
  position: relative;
}
.sh-notification.active {
  transform: scaleX(1);
}
.sh-notification.active .sh-notification-content,
.sh-notification.active .sh-alert-header,
.sh-notification.active .sh-alert-body,
.sh-notification.active .sh-alert-footer {
  opacity: 1;
  transition: opacity 0.2s ease 0.15s;
}
.sh-notification.removing {
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.6, 1) 0.15s;
}
.sh-notification.removing .sh-notification-content,
.sh-notification.removing .sh-alert-header,
.sh-notification.removing .sh-alert-body,
.sh-notification.removing .sh-alert-footer {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.sh-notification .sh-notification-content,
.sh-notification .sh-alert-header,
.sh-notification .sh-alert-body,
.sh-notification .sh-alert-footer {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sh-notification::before {
  content: "";
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, #00D1FF 0.67%, #FF00E6 59.37%, #FF003D 99.33%);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sh-notification {
    min-width: auto;
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }
}

.sh-notification-simple .sh-notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  flex: 1;
}
.sh-notification-simple .sh-notification-content .sh-notification-message {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.4;
  color: white;
  font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sh-notification-simple .sh-notification-content .sh-notification-icon {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-notification-simple .sh-notification-content .sh-notification-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.sh-notification-simple .sh-notification-content .sh-notification-close:hover {
  color: white;
  background: #F3F4F6;
}

.sh-notification-persistent {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.sh-notification-persistent .sh-notification-close {
  background: #011E45;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.sh-notification-persistent .sh-notification-close:hover {
  background: rgb(0.2714285714, 8.1428571429, 18.7285714286);
  transform: scale(1.1);
}
.sh-notification-persistent.sh-notification-error .sh-notification-close {
  background: white;
}
.sh-notification-persistent.sh-notification-error .sh-notification-close:hover {
  background: rgb(229.5, 229.5, 229.5);
}

.sh-notification-alert .sh-alert-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  text-align: center;
}
.sh-notification-alert .sh-alert-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem 0;
  font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sh-notification-alert .sh-alert-header p {
  color: white;
  margin: 0;
  line-height: 1.4;
  font-size: 0.875rem;
  font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sh-notification-alert .sh-alert-body {
  padding: 0 1.5rem;
}
.sh-notification-alert .sh-alert-body .sh-input-group {
  margin-bottom: 1rem;
}
.sh-notification-alert .sh-alert-body .sh-input-group label {
  display: block;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.sh-notification-alert .sh-alert-body .sh-input-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sh-notification-alert .sh-alert-body .sh-input-group input:focus {
  outline: none;
  border-color: #011E45;
  box-shadow: 0 0 0 3px rgba(1, 30, 69, 0.1);
}
.sh-notification-alert .sh-alert-body .sh-input-group input::-moz-placeholder {
  color: #9CA3AF;
}
.sh-notification-alert .sh-alert-body .sh-input-group input::placeholder {
  color: #9CA3AF;
}
.sh-notification-alert .sh-alert-footer {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.sh-notification-alert .sh-alert-footer .sh-btn {
  min-width: 100px;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.sh-notification-alert .sh-alert-footer .sh-btn.sh-btn-primary {
  background: white;
  color: #011E45;
}
.sh-notification-alert .sh-alert-footer .sh-btn.sh-btn-outline {
  color: white;
  background: transparent;
  border: 1px solid white;
}
.sh-notification-alert .sh-alert-footer .sh-btn.sh-btn-outline:hover:not(:disabled) {
  background: rgba(1, 30, 69, 0.1);
  border-color: #011E45;
}

@keyframes fadeInExpand {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  60% {
    transform: scaleX(1.02);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes fadeOutContract {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  40% {
    transform: scaleX(0.98);
    opacity: 0.8;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .sh-dashboard {
    font-size: 16px;
  }
  .sh-sites-grid {
    grid-template-columns: 1fr;
  }
  .sh-site-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .sh-site-actions .sh-btn {
    width: 100%;
  }
  .sh-header-right {
    flex-wrap: wrap;
  }
  .sh-header-right .sh-btn {
    flex: 1;
    min-width: 120px;
  }
}
@media (max-width: 480px) {
  .sh-content {
    padding: 1rem;
  }
  .sh-header {
    padding: 1.5rem 1rem;
  }
  .sh-site-card {
    padding: 1rem;
  }
  .sh-site-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .sh-stat .sh-stat-value {
    font-size: 1.25rem;
  }
  .sh-stat .sh-stat-label {
    font-size: 0.625rem;
  }
}
.sh-dashboard-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (max-width: 1250px) {
  .sh-dashboard-layout {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .sh-dashboard-layout {
    flex-direction: column;
    gap: 1rem;
  }
}

.sh-sites-section {
  flex: 2;
  min-width: 0;
}
.sh-sites-section h2 {
  color: #011E45;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .sh-sites-section {
    max-width: 65%;
  }
}
@media (max-width: 768px) {
  .sh-sites-section {
    max-width: 100%;
    flex: none;
  }
}

.sh-sites-container {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .sh-sites-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.sh-usage-sidebar {
  flex: 1;
  min-width: 280px;
}
@media (max-width: 1024px) {
  .sh-usage-sidebar {
    min-width: 250px;
  }
}
@media (max-width: 768px) {
  .sh-usage-sidebar {
    min-width: unset;
    order: -1;
    flex: none;
  }
}
@media only screen and (max-width: 1250px) {
  .sh-usage-sidebar {
    flex: 1 0 100%;
  }
}
.sh-usage-sidebar h2 {
  color: #011E45;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.sh-usage-sidebar .sh-usage-card {
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 2rem;
}
@media (max-width: 1024px) {
  .sh-usage-sidebar .sh-usage-card {
    padding: 1.25rem;
  }
}
@media (max-width: 768px) {
  .sh-usage-sidebar .sh-usage-card {
    position: static;
    padding: 1rem;
  }
}
.sh-usage-sidebar .sh-usage-card .sh-demo {
  margin-bottom: 15px;
}
.sh-usage-sidebar .sh-usage-card h3 {
  color: #011E45;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.sh-usage-sidebar .sh-usage-card .sh-usage-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .sh-usage-sidebar .sh-usage-card .sh-usage-stats {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .sh-usage-sidebar .sh-usage-card .sh-usage-stats {
    gap: 1rem;
  }
}
.sh-usage-sidebar .sh-usage-card .sh-usage-stats .sh-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.sh-usage-sidebar .sh-usage-card .sh-usage-stats .sh-stat .sh-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #011E45;
  line-height: 1;
}
.sh-usage-sidebar .sh-usage-card .sh-usage-stats .sh-stat .sh-stat-label {
  font-size: 0.875rem;
  color: #4B5563;
  margin-top: 0.25rem;
  text-align: center;
}
.sh-usage-sidebar .sh-usage-card .sh-upgrade-prompt {
  padding: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1rem;
}
.sh-usage-sidebar .sh-usage-card .sh-upgrade-prompt p {
  margin-bottom: 1rem;
  color: #374151;
}
.sh-usage-sidebar .sh-usage-card .sh-plan-subtitle {
  color: #4B5563;
  font-size: 0.875rem;
}
.sh-usage-sidebar .sh-usage-card .sh-plan-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.sh-usage-sidebar .sh-usage-card .sh-progress-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-usage-sidebar .sh-usage-card .sh-progress-svg {
  transform: rotate(-90deg);
}
.sh-usage-sidebar .sh-usage-card .sh-progress-svg .sh-progress-bg {
  opacity: 0.3;
}
.sh-usage-sidebar .sh-usage-card .sh-progress-svg .sh-progress-fill {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.sh-usage-sidebar .sh-usage-card .sh-progress-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-usage-sidebar .sh-usage-card .sh-progress-text .sh-progress-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #011E45;
}
.sh-usage-sidebar .sh-usage-card .sh-manage-plan-btn {
  width: 100%;
  margin-top: 1rem;
}
.sh-usage-sidebar .sh-usage-card .sh-plan-renewal-info {
  margin-bottom: 1.5rem;
}
.sh-usage-sidebar .sh-usage-card .sh-plan-renewal-info .sh-renewal-text {
  margin: 0;
  font-size: 0.875rem;
}

.sh-subscription-plans .sh-breadcrumb {
  margin-bottom: 2rem;
}
.sh-subscription-plans .sh-breadcrumb .sh-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4B5563;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.sh-subscription-plans .sh-breadcrumb .sh-breadcrumb-link:hover {
  color: #011E45;
}
.sh-subscription-plans .sh-breadcrumb .sh-breadcrumb-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sh-subscription-plans .sh-plans-header {
  text-align: center;
  margin-bottom: 3rem;
}
.sh-subscription-plans .sh-plans-header h2 {
  color: #011E45;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.sh-subscription-plans .sh-plans-header p {
  color: #4B5563;
  font-size: 1.125rem;
}
.sh-subscription-plans .sh-billing-toggle {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.sh-subscription-plans .sh-toggle-container {
  display: flex;
  background: #F3F4F6;
  border-radius: 12px;
  padding: 4px;
  position: relative;
  overflow: hidden;
  max-width: 280px;
}
.sh-subscription-plans .sh-toggle-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #6B7280;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sh-subscription-plans .sh-toggle-btn:hover {
  color: #374151;
}
.sh-subscription-plans .sh-toggle-btn.active {
  background: #FFFFFF;
  color: #011E45;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sh-subscription-plans .sh-savings-badge {
  background: linear-gradient(90deg, #10B981, rgb(11.9402985075, 138.0597014925, 96.2686567164));
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}
.sh-subscription-plans .sh-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.sh-subscription-plans .sh-plan-card {
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}
.sh-subscription-plans .sh-plan-card:hover {
  border-color: #011E45;
  box-shadow: 0 8px 25px rgba(1, 30, 69, 0.15);
  transform: translateY(-2px);
}
.sh-subscription-plans .sh-plan-card.current {
  border-color: #ff003d;
  background: linear-gradient(145deg, #FFFFFF, rgba(255, 0, 61, 0.05));
}
.sh-subscription-plans .sh-plan-card.current::before {
  content: "Current Plan";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff003d;
  color: #FFFFFF;
  padding: 0.25rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}
.sh-subscription-plans .sh-plan-card .sh-plan-header {
  text-align: center;
  margin-bottom: 2rem;
}
.sh-subscription-plans .sh-plan-card .sh-plan-header h3 {
  color: #011E45;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.sh-subscription-plans .sh-plan-card .sh-plan-header .sh-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}
.sh-subscription-plans .sh-plan-card .sh-plan-header .sh-plan-price .sh-price {
  font-size: 3rem;
  font-weight: 800;
  color: #011E45;
  line-height: 1;
}
.sh-subscription-plans .sh-plan-card .sh-plan-header .sh-plan-price .sh-period {
  color: #4B5563;
  font-size: 1rem;
}
.sh-subscription-plans .sh-plan-card .sh-plan-features {
  margin-bottom: 2rem;
}
.sh-subscription-plans .sh-plan-card .sh-plan-features .sh-site-limit {
  text-align: center;
  padding: 1rem;
  background: rgba(1, 30, 69, 0.05);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.sh-subscription-plans .sh-plan-card .sh-plan-features .sh-site-limit strong {
  color: #011E45;
  font-size: 1.125rem;
  font-weight: 700;
}
.sh-subscription-plans .sh-plan-card .sh-plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sh-subscription-plans .sh-plan-card .sh-plan-features ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F3F4F6;
  color: #374151;
  position: relative;
  padding-left: 1.5rem;
}
.sh-subscription-plans .sh-plan-card .sh-plan-features ul li:last-child {
  border-bottom: none;
}
.sh-subscription-plans .sh-plan-card .sh-plan-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 600;
}
.sh-subscription-plans .sh-plan-card .sh-plan-action {
  text-align: center;
}
.sh-subscription-plans .sh-plan-card .sh-plan-action .sh-btn {
  width: 100%;
}
.sh-subscription-plans .sh-plans-footer {
  text-align: center;
}

@media (max-width: 768px) {
  .sh-subscription-info .sh-usage-card .sh-usage-stats {
    gap: 1rem;
  }
  .sh-subscription-plans .sh-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sh-subscription-plans .sh-plan-card {
    padding: 1.5rem;
  }
  .sh-subscription-plans .sh-plan-card .sh-plan-header .sh-plan-price .sh-price {
    font-size: 2.5rem;
  }
  .sh-subscription-plans .sh-toggle-container {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .sh-subscription-plans .sh-toggle-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  .sh-subscription-plans .sh-savings-badge {
    font-size: 9px;
    padding: 1px 4px;
  }
}
.sh-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.sh-modal-content {
  background: #f4f9fa;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sh-site-selection-content .sh-modal-header {
  padding: 2rem;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}
.sh-site-selection-content .sh-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #011E45;
  margin: 0 0 0.5rem 0;
}
.sh-site-selection-content .sh-modal-header p {
  color: #4B5563;
  margin: 0;
}
.sh-site-selection-content .sh-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #4B5563;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
.sh-site-selection-content .sh-modal-close:hover {
  color: #011E45;
}
.sh-site-selection-content .sh-sites-list {
  padding: 1rem 2rem;
}
.sh-site-selection-content .sh-sites-list .sh-site-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}
.sh-site-selection-content .sh-sites-list .sh-site-option:hover {
  border-color: #011E45;
  background: rgba(1, 30, 69, 0.02);
}
.sh-site-selection-content .sh-sites-list .sh-site-option:last-child {
  margin-bottom: 0;
}
.sh-site-selection-content .sh-sites-list .sh-site-info {
  flex: 1;
}
.sh-site-selection-content .sh-sites-list .sh-site-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #011E45;
  margin: 0 0 0.25rem 0;
}
.sh-site-selection-content .sh-sites-list .sh-site-info .sh-site-url {
  color: #011E45;
  font-weight: 500;
  margin: 0 0 0.25rem 0;
  font-size: 0.875rem;
}
.sh-site-selection-content .sh-sites-list .sh-site-info .sh-site-description {
  color: #4B5563;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}
.sh-site-selection-content .sh-modal-footer {
  padding: 1rem 2rem 2rem 2rem;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.sh-install-instructions-content {
  max-width: 700px;
}
.sh-install-instructions-content .sh-modal-header {
  padding: 2rem;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}
.sh-install-instructions-content .sh-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #011E45;
  margin: 0 0 0.5rem 0;
}
.sh-install-instructions-content .sh-modal-header p {
  color: #4B5563;
  margin: 0;
}
.sh-install-instructions-content .sh-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #4B5563;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
.sh-install-instructions-content .sh-modal-close:hover {
  color: #011E45;
}
.sh-install-instructions-content .sh-install-steps {
  padding: 2rem;
}
.sh-install-instructions-content .sh-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.sh-install-instructions-content .sh-step:last-child {
  margin-bottom: 0;
}
.sh-install-instructions-content .sh-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-install-instructions-content .sh-step-number svg {
  width: 100%;
  height: 100%;
}
.sh-install-instructions-content .sh-step-content {
  flex: 1;
}
.sh-install-instructions-content .sh-step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #011E45;
  margin: 0 0 0.5rem 0;
}
.sh-install-instructions-content .sh-step-content p {
  color: #4B5563;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
.sh-install-instructions-content .sh-step-content p strong {
  color: #011E45;
  font-weight: 600;
}
.sh-install-instructions-content .sh-code-block {
  background: #011E45;
  border-radius: 8px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1rem;
}
.sh-install-instructions-content .sh-code-block pre {
  margin: 0;
  overflow-x: auto;
}
.sh-install-instructions-content .sh-code-block pre code {
  color: #00FF88;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: pre;
}
.sh-install-instructions-content .sh-copy-btn {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sh-install-instructions-content .sh-copy-btn svg {
  flex-shrink: 0;
}
.sh-install-instructions-content .sh-install-status {
  padding: 2rem;
  border-top: 1px solid #E5E7EB;
}
.sh-install-instructions-content .sh-status-waiting {
  text-align: center;
  padding: 2rem 0;
}
.sh-install-instructions-content .sh-status-waiting .sh-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 3px solid #E5E7EB;
  border-top-color: #011E45;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.sh-install-instructions-content .sh-status-waiting p {
  color: #4B5563;
  margin: 0;
}
.sh-install-instructions-content .sh-status-success {
  text-align: center;
  padding: 2rem 0;
}
.sh-install-instructions-content .sh-status-success svg {
  margin: 0 auto 1rem;
}
.sh-install-instructions-content .sh-status-success h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #011E45;
  margin: 0 0 0.5rem 0;
}
.sh-install-instructions-content .sh-status-success p {
  color: #4B5563;
  margin: 0 0 1.5rem 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.sh-install-instructions-content .sh-modal-footer {
  padding: 1rem 2rem 2rem 2rem;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.sh-dashboard[data-current-tab=account] .sh-header {
  display: none;
}

.sh-account-header {
  text-align: left;
  margin-bottom: 3rem;
}
.sh-account-header h2 {
  color: #011E45;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.sh-account-header p {
  color: #4B5563;
  font-size: 1.125rem;
}

.sh-account-sections {
  max-width: 800px;
}

.sh-account-section {
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sh-account-section h3 {
  color: #011E45;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.sh-account-section.sh-danger-section {
  border-color: rgba(239, 68, 68, 0.2);
}
.sh-account-section.sh-danger-section h3 {
  color: #EF4444;
}

.sh-account-form .sh-form-group {
  margin-bottom: 1.5rem;
}
.sh-account-form .sh-form-group label {
  display: block;
  font-weight: 600;
  color: #011E45;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.sh-account-form .sh-form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sh-account-form .sh-form-group input:focus {
  outline: none;
  border-color: #011E45;
  box-shadow: 0 0 0 3px rgba(1, 30, 69, 0.1);
}
.sh-account-form .sh-form-group input[readonly] {
  background-color: #F9FAFB;
  color: #4B5563;
  cursor: not-allowed;
}
.sh-account-form .sh-form-group input::-moz-placeholder {
  color: #9CA3AF;
}
.sh-account-form .sh-form-group input::placeholder {
  color: #9CA3AF;
}
.sh-account-form .sh-form-group .sh-form-help {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6B7280;
}
.sh-account-form .sh-form-row {
  display: flex;
  gap: 1rem;
}
.sh-account-form .sh-form-row .sh-form-group {
  flex: 1;
}
@media (max-width: 480px) {
  .sh-account-form .sh-form-row {
    flex-direction: column;
    gap: 0;
  }
}
.sh-account-form .sh-form-actions {
  margin-top: 2rem;
}
.sh-account-form .sh-form-actions .sh-btn {
  min-width: 140px;
}

/*Affiliate form*/
#sh-affiliate-form {
  margin-top: 30px;
}

.sh-delete-confirmation {
  flex: 1 0 100%;
}

.sh-account-actions .sh-action-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.sh-account-actions .sh-action-item:last-child {
  padding-bottom: 0;
}
.sh-account-actions .sh-action-item:first-child {
  padding-top: 0;
}
.sh-account-actions .sh-action-info {
  flex: 1;
  margin-right: 1rem;
}
.sh-account-actions .sh-action-info h4 {
  color: #011E45;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.sh-account-actions .sh-action-info p {
  color: #4B5563;
  font-size: 0.875rem;
  margin: 0;
}
@media (max-width: 480px) {
  .sh-account-actions .sh-action-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .sh-account-actions .sh-action-info {
    margin-right: 0;
  }
}

@media print {
  .sh-dashboard {
    display: none !important;
  }
}
.sh-over-limit-management {
  position: relative;
  z-index: 1000;
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}
.sh-over-limit-management .sh-header-section {
  padding-bottom: 20px;
}
.sh-over-limit-management .sh-header-section h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.sh-over-limit-management .sh-alert-actions {
  margin: 20px 0;
}

.sh-site-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sh-action-section {
  margin: 10px 0 30px 0;
}

.sh-mobile-blocked {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #011E45;
  overflow: hidden;
}
.sh-mobile-blocked::after {
  content: "";
  position: absolute;
  width: 513px;
  height: 513px;
  top: -20%;
  left: 0%;
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.7) 0%, rgba(166, 3, 243, 0.7) 45.01%, rgba(255, 0, 230, 0.7) 97.51%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(47px);
  z-index: 0;
  pointer-events: none;
}

.sh-mobile-blocked-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}
.sh-mobile-blocked-container::after {
  content: "";
  position: absolute;
  width: 536px;
  height: 536px;
  bottom: -20%;
  right: 0;
  background: linear-gradient(180deg, #00D1FF 0%, #A603F3 45.01%, #FF00E6 97.51%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(47px);
  z-index: 0;
  pointer-events: none;
}

.sh-mobile-blocked-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 3;
  max-width: 500px;
}
.sh-mobile-blocked-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 2rem 0 1.5rem 0;
  color: white;
  letter-spacing: -0.02em;
  font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sh-mobile-blocked-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-family: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sh-mobile-blocked-logo {
  margin-bottom: 2rem;
}
.sh-mobile-blocked-logo svg {
  width: auto;
  height: 68px;
  max-width: 100%;
}

.sh-transfer-dialog .sh-dialog-body {
  padding: 1.5rem 0;
}
.sh-transfer-dialog .sh-transfer-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.sh-transfer-dialog .sh-transfer-warning .sh-warning-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.sh-transfer-dialog .sh-transfer-warning .sh-warning-text {
  flex: 1;
}
.sh-transfer-dialog .sh-transfer-warning .sh-warning-text p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.sh-transfer-dialog .sh-transfer-warning .sh-warning-text p:last-child {
  margin-bottom: 0;
}
.sh-transfer-dialog .sh-transfer-warning .sh-warning-text p strong {
  color: #F59E0B;
}
.sh-transfer-dialog .sh-input-group {
  margin-bottom: 0;
}
.sh-transfer-dialog .sh-input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}
.sh-transfer-dialog .sh-input-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}
.sh-transfer-dialog .sh-input-group textarea:focus {
  outline: none;
  border-color: #011E45;
  box-shadow: 0 0 0 3px rgba(1, 30, 69, 0.1);
}
.sh-transfer-dialog .sh-input-group textarea::-moz-placeholder {
  color: #9CA3AF;
}
.sh-transfer-dialog .sh-input-group textarea::placeholder {
  color: #9CA3AF;
}

.sh-transfer-success .sh-dialog-header {
  text-align: center;
}
.sh-transfer-success .sh-dialog-header .sh-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.sh-transfer-success .sh-dialog-header h3 {
  color: #10B981;
  margin-bottom: 0.5rem;
}
.sh-transfer-success .sh-dialog-body {
  padding: 1.5rem 0;
}
.sh-transfer-success .sh-transfer-code-section,
.sh-transfer-success .sh-transfer-url-section {
  margin-bottom: 1.5rem;
}
.sh-transfer-success .sh-transfer-code-section label,
.sh-transfer-success .sh-transfer-url-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}
.sh-transfer-success .sh-transfer-code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}
.sh-transfer-success .sh-transfer-code code {
  flex: 1;
  font-family: "SF Mono", "Monaco", "Consolas", monospace;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #011E45;
  background: none;
  padding: 0;
}
.sh-transfer-success .sh-transfer-url {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sh-transfer-success .sh-transfer-url input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #4B5563;
  background: #F9FAFB;
}
.sh-transfer-success .sh-transfer-url input:focus {
  outline: none;
  border-color: #011E45;
}
.sh-transfer-success .sh-copy-btn {
  background: #011E45;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.sh-transfer-success .sh-copy-btn:hover {
  background: rgb(0.2714285714, 8.1428571429, 18.7285714286);
  transform: translateY(-1px);
}
.sh-transfer-success .sh-copy-btn.copied {
  background: #10B981;
  transform: scale(0.95);
}
.sh-transfer-success .sh-transfer-instructions {
  background: rgba(1, 30, 69, 0.05);
  border: 1px solid rgba(1, 30, 69, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.sh-transfer-success .sh-transfer-instructions h4 {
  color: #011E45;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.sh-transfer-success .sh-transfer-instructions ol {
  margin: 0;
  padding-left: 1.25rem;
}
.sh-transfer-success .sh-transfer-instructions ol li {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #374151;
}
.sh-transfer-success .sh-transfer-instructions ol li:last-child {
  margin-bottom: 0;
}

.sh-transfer-claim .sh-dialog-header {
  text-align: center;
}
.sh-transfer-claim .sh-dialog-header .sh-transfer-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.sh-transfer-claim .sh-dialog-header h3 {
  color: #011E45;
  margin-bottom: 0.5rem;
}
.sh-transfer-claim .sh-transfer-details {
  padding: 1.5rem 0;
}
.sh-transfer-claim .sh-site-preview {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.sh-transfer-claim .sh-site-preview h4 {
  color: #011E45;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.sh-transfer-claim .sh-site-preview .sh-site-url {
  font-size: 0.9rem;
  margin: 0;
}
.sh-transfer-claim .sh-site-preview .sh-site-status .sh-status-activated {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}
.sh-transfer-claim .sh-site-preview .sh-site-status .sh-status-demo {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}
.sh-transfer-claim .sh-transfer-info {
  background: rgba(1, 30, 69, 0.05);
  border: 1px solid rgba(1, 30, 69, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.sh-transfer-claim .sh-transfer-info p {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.sh-transfer-claim .sh-transfer-info p:last-child {
  margin-bottom: 0;
}
.sh-transfer-claim .sh-transfer-info p strong {
  color: #011E45;
  font-weight: 600;
}
.sh-transfer-claim .sh-transfer-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 1rem;
}
.sh-transfer-claim .sh-transfer-warning p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.sh-transfer-claim .sh-transfer-warning p strong {
  color: #F59E0B;
}

.sh-site-card.sh-transfer-pending .sh-site-menu .sh-menu-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sh-transfer-complete-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.sh-transfer-complete-card .sh-transfer-complete-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sh-transfer-complete-card .sh-transfer-complete-content .sh-transfer-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.sh-transfer-complete-card .sh-transfer-complete-content .sh-transfer-text {
  flex: 1;
}
.sh-transfer-complete-card .sh-transfer-complete-content .sh-transfer-text h3 {
  color: #10b981;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.sh-transfer-complete-card .sh-transfer-complete-content .sh-transfer-text p {
  color: #374151;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.sh-transfer-complete-card .sh-dismiss-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.sh-transfer-complete-card .sh-dismiss-btn:hover {
  background: rgba(107, 114, 128, 0.1);
  color: #374151;
}

.sh-site-card.sh-incoming-transfer {
  background: #e2edfa;
  border: 2px solid #3b83f6;
  position: relative;
  margin: 30px 0;
}
.sh-site-card.sh-incoming-transfer::before {
  content: "INCOMING";
  position: absolute;
  top: -8px;
  right: 12px;
  background: #3b83f6;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.sh-status-indicator.sh-transfer-pending {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}
.sh-status-indicator.sh-transfer-pending .sh-status-icon svg {
  stroke: white;
}

.sh-status-indicator.sh-transfer-initiated {
  padding: 3px 7px;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}
.sh-status-indicator.sh-transfer-initiated .sh-status-icon {
  width: 17px;
  height: 17px;
  border-radius: 17px;
  background: #3B82F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-status-indicator.sh-transfer-initiated .sh-status-icon svg {
  stroke: white;
}

.sh-transfer-page {
  max-width: 800px;
  padding: 2rem;
}
.sh-transfer-page .sh-transfer-header {
  text-align: left;
  margin-bottom: 3rem;
  margin-top: 30px;
}
.sh-transfer-page .sh-transfer-header h2 {
  color: #011E45;
  margin: 0 0 0.75rem 0;
  font-size: 2rem;
  font-weight: 700;
}
.sh-transfer-page .sh-transfer-header p {
  font-size: 1rem;
}
.sh-transfer-page .sh-site-preview-card {
  background: #f4f9fa;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.2s ease;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}
.sh-transfer-page .sh-site-preview-card .sh-site-preview-info h3 {
  font-size: 1.125rem;
}
.sh-transfer-page .sh-site-preview-card .sh-site-preview-info .sh-site-url {
  margin: 0;
  font-size: 1rem;
}
.sh-transfer-page .sh-transfer-warning-card {
  margin-bottom: 2rem;
}
.sh-transfer-page .sh-transfer-warning-card .sh-warning-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sh-transfer-page .sh-transfer-warning-card .sh-warning-header .sh-warning-icon {
  font-size: 1.5rem;
}
.sh-transfer-page .sh-transfer-warning-card .sh-warning-content ul {
  margin: 0;
  padding-left: 1.25rem;
}
.sh-transfer-page .sh-transfer-warning-card .sh-warning-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.sh-transfer-page .sh-transfer-warning-card .sh-warning-content ul li:last-child {
  margin-bottom: 0;
}
.sh-transfer-page .sh-transfer-warning-card .sh-warning-content ul li strong {
  font-weight: 600;
}
.sh-transfer-page .sh-transfer-form {
  margin-bottom: 3rem;
}
.sh-transfer-page .sh-transfer-form .sh-input-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}
.sh-transfer-page .sh-transfer-form .sh-input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  resize: vertical;
  min-height: 100px;
  color: #374151;
  background: white;
}
.sh-transfer-page .sh-transfer-form .sh-input-group textarea:focus {
  outline: none;
  border-color: #011E45;
  box-shadow: 0 0 0 3px rgba(1, 30, 69, 0.1);
}
.sh-transfer-page .sh-transfer-form .sh-input-group textarea::-moz-placeholder {
  color: #9CA3AF;
}
.sh-transfer-page .sh-transfer-form .sh-input-group textarea::placeholder {
  color: #9CA3AF;
}
.sh-transfer-page .sh-transfer-form .sh-input-group .sh-input-help {
  margin-top: 0.5rem;
  color: #6B7280;
  font-size: 0.85rem;
  line-height: 1.4;
}
.sh-transfer-page .sh-transfer-actions {
  display: flex;
  gap: 1rem;
}
.sh-transfer-page .sh-transfer-actions .sh-btn {
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.sh-transfer-success-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
.sh-transfer-success-page .sh-success-content {
  text-align: center;
  margin-bottom: 3rem;
}
.sh-transfer-success-page .sh-success-content .sh-success-icon {
  margin-bottom: 1.5rem;
}
.sh-transfer-success-page .sh-success-content h2 {
  color: #011E45;
  margin: 0 0 0.75rem 0;
  font-size: 2rem;
  font-weight: 700;
}
.sh-transfer-success-page .sh-success-content p {
  color: #4B5563;
  font-size: 1.1rem;
  margin: 0;
}
.sh-transfer-success-page .sh-invite-link-section {
  margin-bottom: 3rem;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 2rem;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-header h3 {
  color: #10b981;
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-header p {
  color: #4B5563;
  margin: 0;
  font-size: 0.95rem;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-container {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-container .sh-link-input {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #374151;
  background: white;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-container .sh-link-input:focus {
  outline: none;
  border-color: #10b981;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-container .sh-copy-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-container .sh-copy-btn:hover {
  background: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  transform: translateY(-1px);
}
.sh-transfer-success-page .sh-invite-link-section .sh-link-card .sh-link-container .sh-copy-btn.copied {
  background: rgb(9.9104477612, 114.5895522388, 79.9029850746);
  transform: scale(0.95);
}
.sh-transfer-success-page .sh-transfer-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.sh-transfer-success-page .sh-transfer-info-cards .sh-info-card {
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}
.sh-transfer-success-page .sh-transfer-info-cards .sh-info-card .sh-info-icon {
  margin-bottom: 1rem;
}
.sh-transfer-success-page .sh-transfer-info-cards .sh-info-card .sh-info-icon svg {
  width: 30px;
  height: 30px;
}
.sh-transfer-success-page .sh-transfer-info-cards .sh-info-card h4 {
  color: #011E45;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.sh-transfer-success-page .sh-transfer-info-cards .sh-info-card p {
  color: #4B5563;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.sh-transfer-success-page .sh-transfer-status-info {
  margin-bottom: 3rem;
}
.sh-transfer-success-page .sh-transfer-status-info .sh-status-card {
  background: rgba(1, 30, 69, 0.05);
  border: 2px solid rgba(1, 30, 69, 0.1);
  border-radius: 12px;
  padding: 2rem;
}
.sh-transfer-success-page .sh-transfer-status-info .sh-status-card h4 {
  color: #011E45;
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.sh-transfer-success-page .sh-transfer-status-info .sh-status-card ol {
  margin: 0;
  padding-left: 1.25rem;
}
.sh-transfer-success-page .sh-transfer-status-info .sh-status-card ol li {
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.sh-transfer-success-page .sh-transfer-status-info .sh-status-card ol li:last-child {
  margin-bottom: 0;
}
.sh-transfer-success-page .sh-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.sh-transfer-success-page .sh-success-actions .sh-btn {
  min-width: 140px;
}

.sh-transfer-claim-page {
  max-width: 800px;
  padding: 2rem;
}
.sh-transfer-claim-page .sh-claim-header {
  margin-bottom: 2.5rem;
}
.sh-transfer-claim-page .sh-claim-header .sh-claim-icon {
  margin-bottom: 1.5rem;
}
.sh-transfer-claim-page .sh-claim-header .sh-claim-icon svg {
  width: 64px;
  height: 64px;
}
.sh-transfer-claim-page .sh-claim-header h2 {
  font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #011E45;
  margin: 0 0 0.5rem 0;
}
.sh-transfer-claim-page .sh-claim-header p {
  font-size: 1.125rem;
  margin: 0;
}
.sh-transfer-claim-page .sh-site-transfer-card {
  background: #f4f9fa;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-site-preview {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #E5E7EB;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-site-preview h3 {
  font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #011E45;
  margin: 0 0 0.5rem 0;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-site-preview .sh-site-url {
  color: #011E45;
  font-weight: 500;
  margin: 0 0 0.25rem 0;
  font-size: 0.875rem;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-site-preview .sh-site-status {
  display: flex;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-transfer-details .sh-transfer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-transfer-details .sh-transfer-info-grid .sh-info-item.sh-full-width {
  grid-column: 1/-1;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-transfer-details .sh-transfer-info-grid .sh-info-item .sh-info-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sh-transfer-claim-page .sh-site-transfer-card .sh-transfer-details .sh-transfer-info-grid .sh-info-item .sh-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #011E45;
}
.sh-transfer-claim-page .sh-transfer-warning-card {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sh-transfer-claim-page .sh-transfer-warning-card .sh-warning-content {
  flex: 1;
}
.sh-transfer-claim-page .sh-transfer-warning-card .sh-warning-content ul {
  margin: 0;
  padding-left: 1.25rem;
}
.sh-transfer-claim-page .sh-transfer-warning-card .sh-warning-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.sh-transfer-claim-page .sh-transfer-warning-card .sh-warning-content ul li:last-child {
  margin-bottom: 0;
}
.sh-transfer-claim-page .sh-claim-actions {
  display: flex;
  gap: 1rem;
}
.sh-transfer-claim-page .sh-claim-actions .sh-btn {
  min-width: 160px;
}
@media (max-width: 768px) {
  .sh-transfer-claim-page {
    padding: 1rem;
  }
  .sh-transfer-claim-page .sh-site-transfer-card {
    padding: 1.5rem;
  }
  .sh-transfer-claim-page .sh-site-transfer-card .sh-transfer-details .sh-transfer-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sh-transfer-claim-page .sh-claim-actions {
    flex-direction: column;
    align-items: center;
  }
  .sh-transfer-claim-page .sh-claim-actions .sh-btn {
    width: 100%;
    max-width: 300px;
  }
}

.sh-main:has(.sh-transfer-claim-page) .sh-header {
  display: none;
}

#email-verification-banner {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  background: #ff003d;
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

#resend-verification-email {
  background: white;
  color: #ff003d;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}/*# sourceMappingURL=squarehero-dashboard.css.map */