@charset "UTF-8";
/**
 * My Account - Unified Stylesheet
 *
 * Consolidated styles for the WooCommerce My Account area.
 * Mobile-first responsive design with consistent design tokens.
 *
 * @package OI_WCL
 * @since 2.0.0
 *
 * Structure:
 * 1. Imports
 * 2. Layout System
 * 3. Card System
 * 4. Components (tables, badges, buttons, forms)
 * 5. Status Dashboard
 * 6. Account Sections
 * 7. Responsive & Utilities
 */
.wcl-service-symbol {
  display: inline-block;
  position: relative;
  top: -0.1em;
  max-width: 1.55em;
  width: 1.55em;
  height: 1.55em;
  font-size: 0.7em;
  font-weight: 700;
  line-height: 1.4em;
  padding: 0;
  text-align: center;
  border-radius: 1.55em;
  margin-right: 6px;
  vertical-align: middle;
}
.wcl-service-symbol.mrkoll {
  background: #8ed1fc;
  color: #fff;
  border: 1px solid #8ed1fc;
}
.wcl-service-symbol.krimfup {
  background: #0d6efd;
  color: #fff;
  border: 1px solid #0d6efd;
}
.wcl-service-symbol.lexbase {
  background: #ff9500;
  color: #fff;
  border: 1px solid #ff9500;
}
.wcl-service-symbol.juno {
  background: #fdd551;
  color: #000;
  border: 1px solid #fdd551;
}
.wcl-service-symbol.jp-infonet {
  background: #004b8d;
  color: #fff;
  border: 1px solid #004b8d;
}
.wcl-service-symbol.sv-bg-analys {
  background: #e89e28;
  color: #fff;
  border: 1px solid #e89e28;
}
.wcl-service-symbol.flashback {
  background: #000000;
  color: #fff;
  border: 1px solid #000000;
}
.wcl-service-symbol.verifiera {
  background: #3366FF;
  color: #fff;
  border: 1px solid #3366FF;
}
.wcl-service-symbol.infotorg {
  background: #0078a7;
  color: #fff;
  border: 1px solid #0078a7;
}
.wcl-service-symbol.fuplex {
  background: #285990;
  color: #fff;
  border: 1px solid #285990;
}
.wcl-service-symbol.trobar {
  background: #13aabe;
  color: #fff;
  border: 1px solid #13aabe;
}
.wcl-service-symbol.ratsit {
  background: #211262;
  color: #fff;
  border: 1px solid #211262;
}
.wcl-service-symbol.upplysning {
  background: #166284;
  color: #fff;
  border: 1px solid #166284;
}
.wcl-service-symbol.hitta {
  background: #79ccf8;
  color: #fff;
  border: 1px solid #79ccf8;
}
.wcl-service-symbol.birthday {
  background: #e22258;
  color: #fff;
  border: 1px solid #e22258;
}
.wcl-service-symbol.eniro {
  background: #fff133;
  color: #000;
  border: 1px solid #fff133;
}
.wcl-service-symbol.merinfo {
  background: #b0e6fc;
  color: #000;
  border: 1px solid #b0e6fc;
}
.wcl-service-symbol.reddit {
  background: #ff4500;
  color: #fff;
  border: 1px solid #ff4500;
}
.wcl-service-symbol.snapchat {
  background: #fffc00;
  color: #000;
  border: 1px solid #fffc00;
}
.wcl-service-symbol.threads {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.wcl-service-symbol.x {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.wcl-service-symbol.facebook {
  background: #0866ff;
  color: #fff;
  border: 1px solid #0866ff;
}
.wcl-service-symbol.acta-publica {
  background: #13356e;
  color: #fff;
  border: 1px solid #13356e;
}
.wcl-service-symbol {
  background: #666;
  color: #fff;
  border: 1px solid #666;
}

.wcl-my-account-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1400px) {
  .wcl-my-account-container {
    max-width: 1400px;
  }
}

.wcl-my-account-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 922px) {
  .wcl-my-account-layout {
    display: grid;
    grid-template-columns: 58% 42%;
    grid-template-areas: "main sidebar";
    gap: 32px;
    align-items: start;
  }
}

.wcl-main-area {
  grid-area: main;
  min-width: 0;
}
@media (min-width: 922px) {
  .wcl-main-area {
    order: 1;
  }
}
@media (max-width: 921px) {
  .wcl-main-area {
    order: -1;
  }
}
@media only screen and (max-width: 543px) {
  .wcl-main-area {
    margin-bottom: 24px;
  }
}

.wcl-expanded-view {
  margin: 0 auto;
  width: 100%;
  min-height: 600px;
  transition: min-height 300ms ease;
}
@media (max-width: 544px) {
  .wcl-expanded-view {
    min-height: 500px;
  }
}

.wcl-sidebar-area {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wcl-sidebar-area .wcl-sidebar-card-wrapper {
  transition: opacity 200ms ease;
}
@media (min-width: 922px) {
  .wcl-sidebar-area {
    position: sticky;
    top: 30px;
    max-height: calc(100vh - 120px);
    overflow-y: visible;
    overflow-x: visible;
    order: 2;
  }
  .wcl-sidebar-area::-webkit-scrollbar {
    width: 6px;
  }
  .wcl-sidebar-area::-webkit-scrollbar-track {
    background: transparent;
  }
  .wcl-sidebar-area::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
  }
  .wcl-sidebar-area::-webkit-scrollbar-thumb:hover {
    background: #bbb;
  }
  .wcl-sidebar-area {
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
  }
}
@media (max-width: 921px) {
  .wcl-sidebar-area {
    order: 1;
  }
}

.wcl-sidebar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding: 0 4px;
}
@media (max-width: 921px) {
  .wcl-sidebar-label {
    display: none;
  }
}

.wcl-card, .wcl-card-expanded, .wcl-card-collapsed {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 300ms ease;
  overflow: hidden;
}

.wcl-expanded-card-wrapper {
  transition: opacity 200ms ease, transform 200ms ease;
  will-change: opacity, transform;
}
.wcl-expanded-card-wrapper.wcl-card-active {
  display: block;
}
.wcl-expanded-card-wrapper.wcl-card-inactive {
  display: none;
}
.wcl-expanded-card-wrapper.wcl-card-collapsing {
  opacity: 0;
  transform: scale(0.98);
}
.wcl-expanded-card-wrapper.wcl-card-expanding {
  opacity: 1;
  transform: scale(1);
}

.wcl-sidebar-card-wrapper {
  overflow: visible;
  margin-bottom: 16px;
  transition: opacity 200ms ease, transform 200ms ease;
  will-change: opacity, transform;
}
.wcl-sidebar-card-wrapper.wcl-card-active, .wcl-sidebar-card-wrapper.wcl-card-inactive {
  display: block;
}
.wcl-sidebar-card-wrapper.wcl-card-active .wcl-card-collapsed {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left-width: 0 !important;
  cursor: default;
}
.wcl-sidebar-card-wrapper.wcl-card-active .wcl-card-collapsed:hover {
  transform: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
  z-index: 1;
}
.wcl-sidebar-card-wrapper.wcl-card-active .wcl-card-collapsed:active {
  transform: none !important;
}
.wcl-sidebar-card-wrapper.wcl-card-hiding {
  opacity: 0;
  transform: scale(0.95);
}
.wcl-sidebar-card-wrapper.wcl-card-showing {
  opacity: 1;
  transform: scale(1);
}

.wcl-card-collapsed {
  padding: 20px;
  border-left: 0 solid;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
}
.wcl-card-collapsed:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.wcl-card-collapsed:active {
  transform: scale(0.98);
}
.wcl-card-collapsed:focus {
  outline: 2px solid #205d8f;
  outline-offset: 3px;
}
.wcl-card-collapsed:focus-visible {
  outline: 2px solid #205d8f;
  outline-offset: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 0 0 4px rgba(32, 93, 143, 0.1);
}
.wcl-card-collapsed {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.wcl-card-collapsed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.wcl-card-collapsed-header .wcl-card-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.wcl-card-collapsed-header .wcl-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
}

.wcl-card-collapsed-body {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
}
.wcl-card-collapsed-body .wcl-card-line {
  margin: 0;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wcl-card-collapsed-body .wcl-card-line:first-child {
  font-weight: 500;
  color: #333;
}
.wcl-card-collapsed-body .wcl-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.wcl-card-expanded {
  padding: 4px;
  border-radius: 0;
  border-left: none;
  box-shadow: none;
  animation: cardExpandIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 32px;
}
@media (max-width: 544px) {
  .wcl-card-expanded {
    padding: 24px 20px;
    margin-bottom: 24px;
    box-shadow: none;
    border-left: none;
    padding: 0;
    background: none;
  }
}

.wcl-card-expanded-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.wcl-card-expanded-header .wcl-card-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wcl-card-expanded-header .wcl-card-title-wrapper .wcl-card-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.wcl-card-expanded-header .wcl-card-title-wrapper .wcl-card-title {
  font-size: 18.75px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
@media (max-width: 544px) {
  .wcl-card-expanded-header .wcl-card-title-wrapper .wcl-card-title {
    font-size: 1.125rem;
  }
}
.wcl-card-expanded-header .wcl-card-actions {
  display: flex;
  gap: 8px;
}

.wcl-card-expanded-body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333;
}
.wcl-card-expanded-body .wcl-form-section {
  margin-top: 24px;
}
.wcl-card-expanded-body .wcl-form-section:first-child {
  margin-top: 0;
}
.wcl-card-expanded-body .wcl-form-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 16px 0;
}

.wcl-card-subscription.wcl-card-collapsed {
  border-left-color: #667eea;
}
.wcl-card-subscription.wcl-card-expanded {
  border-left-color: #667eea;
}
.wcl-card-subscription.wcl-card-expanded .wcl-card-icon {
  color: #667eea;
}

.wcl-card-profile.wcl-card-collapsed {
  border-left-color: #205d8f;
}
.wcl-card-profile.wcl-card-expanded {
  border-left-color: #205d8f;
}
.wcl-card-profile.wcl-card-expanded .wcl-card-icon {
  color: #205d8f;
}

.wcl-card-address.wcl-card-collapsed {
  border-left-color: #00a32a;
}
.wcl-card-address.wcl-card-expanded {
  border-left-color: #00a32a;
}
.wcl-card-address.wcl-card-expanded .wcl-card-icon {
  color: #00a32a;
}

.wcl-card-status.wcl-card-collapsed {
  border-left-color: #FF9800;
}
.wcl-card-status.wcl-card-expanded {
  border-left-color: #FF9800;
}
.wcl-card-status.wcl-card-expanded .wcl-card-icon {
  color: #FF9800;
}

.wcl-card-notifications.wcl-card-collapsed {
  border-left-color: #6B7280;
}
.wcl-card-notifications.wcl-card-expanded {
  border-left-color: #6B7280;
}
.wcl-card-notifications.wcl-card-expanded .wcl-card-icon {
  color: #6B7280;
}

@keyframes cardExpandIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes cardCollapseOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}
.wcl-card-collapsing {
  animation: cardCollapseOut 200ms ease-out;
}

.wcl-card-expanding {
  animation: cardExpandIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wcl-card-empty-state {
  text-align: center;
  padding: 48px 20px;
}
.wcl-card-empty-state .wcl-empty-icon {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 16px;
}
.wcl-card-empty-state .wcl-empty-message {
  font-size: 1.125rem;
  color: #666;
  margin: 0 0 24px 0;
}
.wcl-card-empty-state .wcl-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #205d8f;
  color: #ffffff;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
}
.wcl-card-empty-state .wcl-empty-cta:hover {
  background: rgb(24.5394285714, 71.3177142857, 109.6605714286);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(32, 93, 143, 0.3);
}
.wcl-card-empty-state .wcl-empty-cta:active {
  transform: translateY(0);
}

.wcl-card-skeleton .wcl-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s ease-in-out infinite;
  border-radius: 4px;
  margin-bottom: 12px;
}
.wcl-card-skeleton .wcl-skeleton.wcl-skeleton-text {
  height: 16px;
}
.wcl-card-skeleton .wcl-skeleton.wcl-skeleton-text:last-child {
  width: 70%;
}
.wcl-card-skeleton .wcl-skeleton.wcl-skeleton-title {
  height: 24px;
  width: 60%;
  margin-bottom: 16px;
}

@keyframes skeletonLoading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.wcl-status-table-wrapper {
  width: 100%;
}

.wcl-status-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.875rem;
  background: #fff;
  margin-bottom: 0;
  border: 0;
}
.wcl-status-table thead tr {
  background-color: #f8f8f8;
}
.wcl-status-table thead th {
  padding: 10px 8px;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: #333;
  border: none;
  white-space: nowrap;
}
.wcl-status-table thead th:first-child {
  padding-left: 16px;
}
.wcl-status-table thead th:last-child {
  padding-right: 16px;
}
.wcl-status-table tbody tr {
  border: none;
  transition: background-color 0.15s ease;
}
.wcl-status-table tbody tr.wcl-row-even {
  background-color: #fff;
}
.wcl-status-table tbody tr.wcl-row-odd {
  background-color: #f8f8f8;
}
.wcl-status-table tbody tr:hover {
  background-color: rgb(243.04, 243.04, 243.04);
}
.wcl-status-table tbody td {
  padding: 10px 8px;
  border: none;
  vertical-align: middle;
  font-size: 0.875rem;
  color: #333;
}
.wcl-status-table tbody td:first-child {
  padding-left: 16px;
}
.wcl-status-table tbody td:last-child {
  padding-right: 16px;
}

.wcl-status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  cursor: help;
  transition: opacity 200ms ease, transform 0.15s ease;
}
.wcl-status-badge:hover, .wcl-status-badge:focus {
  opacity: 0.85;
  transform: scale(1.02);
}
.wcl-status-badge:focus-visible {
  outline: 2px solid #205d8f;
  outline-offset: 2px;
}
.wcl-status-badge--gray {
  color: rgb(69.4054054054, 71.3513513514, 74.5945945946);
  background-color: rgb(237.75, 238.2, 238.95);
}
.wcl-status-badge--primary {
  color: #205d8f;
  background-color: #f0f7fc;
}
.wcl-status-badge--success, .wcl-status-badge--complete, .wcl-status-badge--green {
  color: rgb(0, 97.8, 25.2);
  background-color: rgb(237.65, 255, 242.1205521472);
}
.wcl-status-badge--warning, .wcl-status-badge--in_progress, .wcl-status-badge--yellow {
  color: rgb(43.8, 33.2, 4.6);
  background-color: rgb(252.452892562, 246.5834710744, 230.747107438);
}
.wcl-status-badge--error, .wcl-status-badge--red {
  color: rgb(66.7785123967, 13.6214876033, 14.2859504132);
  background-color: rgb(252.95, 244.95, 245.05);
}
.wcl-status-badge--pending, .wcl-status-badge--orange {
  color: rgb(153, 91.2, 0);
  background-color: rgb(255, 239.55, 216.75);
}

.wcl-status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto;
}
.wcl-status-dot--green, .wcl-status-dot--complete {
  background-color: #4CAF50;
}
.wcl-status-dot--yellow, .wcl-status-dot--in_progress {
  background-color: #FFC107;
}
.wcl-status-dot--orange, .wcl-status-dot--pending {
  background-color: #FF9800;
}
.wcl-status-dot--red {
  background-color: #F44336;
}
.wcl-status-dot--gray {
  background-color: #9E9E9E;
}

.wcl-status-summary-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.wcl-status-summary-line .wcl-status-dot {
  width: 10px;
  height: 10px;
}
.wcl-status-summary-line .wcl-status-spacer {
  width: 12px;
}

.wcl-progress-container {
  margin-top: 8px;
}

.wcl-progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.wcl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #205d8f 0%, rgb(41.3257142857, 120.1028571429, 184.6742857143) 100%);
  border-radius: 4px;
  transition: width 0.4s ease;
  position: relative;
  overflow: hidden;
}
.wcl-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.wcl-progress-label {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  display: block;
}

.wcl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border: none;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  min-height: 44px;
  min-width: 180px;
  line-height: 1.4;
  position: relative;
}
.wcl-btn:focus {
  outline: 2px solid #205d8f;
  outline-offset: 2px;
}
.wcl-btn:active {
  transform: translateY(1px);
}
.wcl-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.wcl-btn-text {
  display: inline-block;
}

.wcl-btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wcl-btn-primary {
  background: #205d8f;
  color: #ffffff;
}
.wcl-btn-primary:hover {
  background: rgb(24.5394285714, 71.3177142857, 109.6605714286);
  color: #ffffff;
}
.wcl-btn-primary:active {
  background: rgb(20.8091428571, 60.4765714286, 92.9908571429);
}

.wcl-btn-secondary {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}
.wcl-btn-secondary:hover {
  background: #e8e8e8;
  border-color: #ccc;
  color: #333;
}

.wcl-btn-link {
  background: transparent;
  color: #205d8f;
  padding: 8px 12px;
  min-height: auto;
  min-width: auto;
}
.wcl-btn-link:hover {
  background: rgba(32, 93, 143, 0.08);
  color: rgb(22.6742857143, 65.8971428571, 101.3257142857);
}

.wcl-btn-small {
  padding: 6px 12px;
  font-size: 0.75rem;
  min-height: auto;
  min-width: auto;
}

.wcl-btn-icon {
  width: 18px;
  height: 18px;
}

.wcl-form-row {
  margin-bottom: 20px;
}
.wcl-form-row label {
  display: block;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.875rem;
}
.wcl-form-row label .required {
  color: #d63638;
  margin-left: 2px;
}
.wcl-form-row input[type=text],
.wcl-form-row input[type=email],
.wcl-form-row input[type=password],
.wcl-form-row input[type=tel],
.wcl-form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 9px;
  font-size: 0.875rem;
  transition: all 200ms ease;
  min-height: 44px;
}
.wcl-form-row input[type=text]:focus,
.wcl-form-row input[type=email]:focus,
.wcl-form-row input[type=password]:focus,
.wcl-form-row input[type=tel]:focus,
.wcl-form-row textarea:focus {
  border-color: #205d8f;
  box-shadow: 0 0 0 1px #205d8f;
  outline: none;
}
.wcl-form-row input[type=text]:disabled,
.wcl-form-row input[type=email]:disabled,
.wcl-form-row input[type=password]:disabled,
.wcl-form-row input[type=tel]:disabled,
.wcl-form-row textarea:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.wcl-form-row textarea {
  min-height: 100px;
  resize: vertical;
}
.wcl-form-row .wcl-field-description {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-top: 6px;
  font-style: italic;
}

.wcl-form-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: none;
}

.wcl-password-box {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 32px;
  padding: 8px 16px 0;
  margin-top: 24px;
  background: #f8f8f8;
}

.wcl-password-section {
  border: none;
  padding: 0;
  margin: 0;
}
.wcl-password-section legend {
  font-weight: 600;
  font-size: 1.125rem;
  color: #333;
  margin-top: 0 !important;
  padding: 0;
}

.wcl-notice {
  padding: 12px 16px;
  border-radius: 9px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.wcl-notice.wcl-notice-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #00a32a;
}
.wcl-notice.wcl-notice-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #d63638;
}
.wcl-notice.wcl-notice-info {
  background: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}
.wcl-notice.wcl-notice-warning {
  background: #fff3cd;
  color: #856404;
  border-left: 4px solid #dba617;
}

.wcl-toggle-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wcl-toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}
.wcl-toggle-switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.wcl-toggle-switch input[type=checkbox]:checked + .wcl-toggle-slider {
  background: #205d8f;
}
.wcl-toggle-switch input[type=checkbox]:checked + .wcl-toggle-slider::before {
  transform: translateX(16px);
}
.wcl-toggle-switch input[type=checkbox]:focus + .wcl-toggle-slider {
  box-shadow: 0 0 0 3px rgba(32, 93, 143, 0.2);
}
.wcl-toggle-switch input[type=checkbox]:disabled + .wcl-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.wcl-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 20px;
  transition: all 300ms ease;
}
.wcl-toggle-slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 300ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wcl-toggle-status {
  font-weight: 500;
  font-size: 0.75rem;
  color: #666;
}

.wcl-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  z-index: 10;
}

.wcl-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #205d8f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wcl-status-dashboard-v2 {
  width: 100%;
  padding: 0;
  margin: 0;
}

.wcl-status-section {
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.wcl-status-section:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 543px) {
  .wcl-status-section {
    padding: 0;
    box-shadow: none;
  }
}

.wcl-status-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding: 4px 12px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wcl-status-header-row {
  display: flex;
  flex-direction: row;
  padding: 12px 10px 8px 10px;
  border-radius: 9px;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: end;
  justify-content: flex-start;
  font-weight: 200;
  font-size: 0.875rem;
}
.wcl-status-header-row .wcl-col {
  color: #999;
}
.wcl-status-header-row .wcl-col-status {
  padding: 0;
}

.wcl-status-row {
  display: flex;
  flex-direction: row;
  padding: 8px 10px;
  border-radius: 9px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  gap: 12px;
  align-items: baseline;
  justify-content: flex-start;
  line-height: 18px;
  background: #f8f8f8;
  font-size: 0.875rem;
}
.wcl-status-row:last-child {
  margin-bottom: 0;
}
.wcl-status-row--process {
  background: #f8f8ff;
}
.wcl-status-row--removed {
  background: #f6fff6;
}
.wcl-status-row--removed .wcl-status-pill {
  color: #363;
}
.wcl-status-row--tvist {
  background: #f8f8f8;
}
.wcl-status-row--anstand {
  background: #f8f8ff;
}

.wcl-col {
  justify-content: center;
}

.wcl-col-service {
  width: 100%;
  min-width: 130px;
  padding-left: 3px;
}

.wcl-col-compliance,
.wcl-col-links {
  min-width: 70px;
  max-width: 100px;
  width: 100%;
  color: #666;
}

.wcl-col-status {
  min-width: 60px;
  max-width: 80px;
  width: 80%;
  padding-right: 3px;
  color: #666;
}

.wcl-status-mobile-instruction {
  display: none;
  color: #999;
  font-size: 0.75rem;
  font-weight: 400;
  position: absolute;
  right: 2px;
}
@media only screen and (max-width: 543px) {
  .wcl-status-mobile-instruction {
    display: inline;
  }
}

.wcl-tooltip-trigger {
  cursor: help;
}

.wcl-status-pill {
  padding: 0;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  cursor: help;
}

.wcl-status-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #E0E0E0;
}
.wcl-status-section-header:first-child {
  margin-top: 0;
}

.wcl-status-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wcl-compliance-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.wcl-compliance-wrapper.wcl-tooltippable-wrapper:hover .wcl-compliance-square, .wcl-compliance-wrapper.wcl-tooltippable-wrapper:focus .wcl-compliance-square {
  transform: scale(1.08);
}

.wcl-compliance-indicator {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.wcl-compliance-square {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
  transition: transform 0.15s ease;
}
.wcl-compliance-square--red, .wcl-compliance-square--yellow, .wcl-compliance-square--green, .wcl-compliance-square--filled {
  background-color: #666;
}
.wcl-compliance-square--empty {
  background-color: #999;
  opacity: 0.3;
}

.wcl-tooltippable-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: help;
  transition: opacity 200ms ease;
}
.wcl-tooltippable-wrapper:hover, .wcl-tooltippable-wrapper:focus {
  opacity: 0.8;
}
.wcl-tooltippable-wrapper:focus-visible {
  outline: 2px solid #205d8f;
  outline-offset: 2px;
  border-radius: 3px;
}

.wcl-tooltip {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9333333333);
  color: #333;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}
.wcl-tooltip.wcl-tooltip-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wcl-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px;
  border-color: transparent;
}
.wcl-tooltip.wcl-tooltip-top::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(255, 255, 255, 0.9333333333) transparent transparent transparent;
}
.wcl-tooltip.wcl-tooltip-bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-color: transparent transparent rgba(255, 255, 255, 0.8666666667) transparent;
}
.wcl-tooltip.wcl-tooltip-left::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8666666667);
}
.wcl-tooltip.wcl-tooltip-right::after {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-color: transparent rgba(255, 255, 255, 0.8666666667) transparent transparent;
}

.wcl-status-empty {
  padding: 32px 16px;
  text-align: center;
  color: #666;
  font-size: 15px;
}
.wcl-status-empty p {
  margin: 0;
}

.wcl-status-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #E0E0E0;
  text-align: center;
}
.wcl-status-footer .wcl-last-updated {
  font-size: 0.75rem;
  color: #999;
  margin: 0;
}

#customer_login {
  padding: 0 10px;
}

.wcl-account-header {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 0;
  margin-bottom: 48px;
  padding: 60px 4px;
  background: #090f1f;
  position: relative;
}
.wcl-account-header .wcl-account-header-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 922px) {
  .wcl-account-header .wcl-account-header-content {
    padding: 0 24px;
  }
}
@media (max-width: 544px) {
  .wcl-account-header .wcl-account-header-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.wcl-account-header .wcl-account-title {
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 544px) {
  .wcl-account-header .wcl-account-title {
    font-size: 1.75rem;
  }
}
.wcl-account-header .wcl-account-title .wcl-account-username {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}
@media (max-width: 544px) {
  .wcl-account-header .wcl-account-title .wcl-account-username {
    font-size: 0.875rem;
  }
}
.wcl-account-header .wcl-logout-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 200ms ease;
  white-space: nowrap;
}
.wcl-account-header .wcl-logout-button svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.wcl-account-header .wcl-logout-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}
.wcl-account-header .wcl-logout-button:active {
  transform: translateY(0);
}
@media (max-width: 544px) {
  .wcl-account-header .wcl-logout-button {
    justify-content: center;
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

.woocommerce-account .oi-cashout-hero,
.woocommerce-account .oi-checkout-title {
  display: none !important;
}
.woocommerce-account .woocommerce {
  margin: 0 auto;
}
.woocommerce-account .woocommerce-MyAccount-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 60px;
  padding: 0;
  float: none;
}
@media (min-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 0 16px;
  }
}

.woocommerce-MyAccount-navigation {
  display: none;
}

.wcl-password-reset-container {
  padding: 24px 16px 48px;
  min-height: 300px;
}
@media (min-width: 545px) {
  .wcl-password-reset-container {
    padding: 48px 24px 80px;
  }
}
.wcl-password-reset-container p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.woocommerce-ResetPassword,
.lost_reset_password {
  max-width: 500px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  min-height: 300px;
}
@media (min-width: 545px) {
  .woocommerce-ResetPassword,
  .lost_reset_password {
    padding: 48px 24px 80px;
  }
}
.woocommerce-ResetPassword p:first-of-type,
.lost_reset_password p:first-of-type {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}
.woocommerce-ResetPassword .woocommerce-form-row,
.lost_reset_password .woocommerce-form-row {
  margin-bottom: 24px;
}
.woocommerce-ResetPassword .woocommerce-form-row label,
.lost_reset_password .woocommerce-form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.woocommerce-ResetPassword .woocommerce-form-row input[type=text],
.woocommerce-ResetPassword .woocommerce-form-row input[type=email],
.woocommerce-ResetPassword .woocommerce-form-row input[type=password],
.lost_reset_password .woocommerce-form-row input[type=text],
.lost_reset_password .woocommerce-form-row input[type=email],
.lost_reset_password .woocommerce-form-row input[type=password] {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 200ms ease;
}
.woocommerce-ResetPassword .woocommerce-form-row input[type=text]:focus,
.woocommerce-ResetPassword .woocommerce-form-row input[type=email]:focus,
.woocommerce-ResetPassword .woocommerce-form-row input[type=password]:focus,
.lost_reset_password .woocommerce-form-row input[type=text]:focus,
.lost_reset_password .woocommerce-form-row input[type=email]:focus,
.lost_reset_password .woocommerce-form-row input[type=password]:focus {
  border-color: #205d8f;
  outline: none;
}
.woocommerce-ResetPassword .form-row,
.lost_reset_password .form-row {
  margin-bottom: 24px;
}
.woocommerce-ResetPassword button[type=submit],
.woocommerce-ResetPassword .woocommerce-Button,
.lost_reset_password button[type=submit],
.lost_reset_password .woocommerce-Button {
  width: 100%;
  padding: 14px 24px;
  background: #205d8f;
  color: #ffffff;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 200ms ease;
}
.woocommerce-ResetPassword button[type=submit]:hover,
.woocommerce-ResetPassword .woocommerce-Button:hover,
.lost_reset_password button[type=submit]:hover,
.lost_reset_password .woocommerce-Button:hover {
  background: rgb(22.6742857143, 65.8971428571, 101.3257142857);
}

.wcl-subscription-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  padding-top: 4px;
}

.wcl-subscription-hero {
  background: linear-gradient(135deg, #f0f7fc 0%, #ffffff 100%);
  border: 1px solid #d0e4f7;
}
.wcl-subscription-hero .wcl-subscription-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
.wcl-subscription-hero .wcl-subscription-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.wcl-subscription-hero .wcl-lock-in-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.wcl-subscription-hero .wcl-subscription-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wcl-subscription-hero .wcl-subscription-status-badge.status-active {
  background: #d4edda;
  color: #155724;
}
.wcl-subscription-hero .wcl-subscription-status-badge.status-past-due {
  background: #fff3cd;
  color: #856404;
}
.wcl-subscription-hero .wcl-subscription-status-badge.status-canceled, .wcl-subscription-hero .wcl-subscription-status-badge.status-ended {
  background: #f8d7da;
  color: #721c24;
}
.wcl-subscription-hero .wcl-subscription-status-badge.status-trialing {
  background: #d1ecf1;
  color: #0c5460;
}
.wcl-subscription-hero .wcl-subscription-status-badge.status-incomplete {
  background: #e2e3e5;
  color: #383d41;
}

.wcl-subscription-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 16px 0;
}
@media (min-width: 768px) {
  .wcl-subscription-details {
    gap: 16px;
  }
}
.wcl-subscription-details .wcl-detail-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4px;
}
@media (min-width: 480px) {
  .wcl-subscription-details .wcl-detail-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.wcl-subscription-details .wcl-detail-row label {
  color: #666;
  font-size: 15px;
  margin: 0;
}
.wcl-subscription-details .wcl-detail-row .wcl-detail-value {
  font-weight: 400;
  color: #333;
  font-size: 15px;
}
.wcl-subscription-details .wcl-detail-row .wcl-detail-value.wcl-price {
  font-weight: 600;
}
.wcl-subscription-details .wcl-detail-row .wcl-detail-value .wcl-discounted-label {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.75rem;
  color: #883333;
  font-weight: 500;
}

.wcl-subscription-details-expanded {
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}
.wcl-subscription-details-expanded .wcl-detail-row:last-child {
  border-bottom: none;
}
.wcl-subscription-details-expanded .wcl-detail-row label {
  color: #333;
  font-size: 0.875rem;
  display: block;
}
.wcl-subscription-details-expanded .wcl-detail-row .wcl-detail-value {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 0.875rem;
  color: #333;
}
.wcl-subscription-details-expanded .wcl-detail-row .wcl-detail-value.wcl-price {
  font-size: 1.5rem;
  color: #205d8f;
}
.wcl-subscription-details-expanded .wcl-detail-row .wcl-discounted-label {
  font-size: 0.875rem;
  color: #00a32a;
  font-weight: 400;
  margin-left: 8px;
}
.wcl-subscription-details-expanded .wcl-progress-row .wcl-progress-container {
  margin-top: 8px;
}
.wcl-subscription-details-expanded .wcl-renewal-row {
  align-items: center;
}
.wcl-subscription-details-expanded .wcl-renewal-row .wcl-toggle-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}
@media (max-width: 479px) {
  .wcl-subscription-details-expanded .wcl-renewal-row .wcl-toggle-container {
    margin-top: 8px;
  }
}

.wcl-subscription-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.wcl-subscription-message.wcl-renewal-message {
  background: rgba(32, 93, 143, 0.05);
  border-left: 4px solid #205d8f;
}
.wcl-subscription-message.wcl-lock-in-message {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 4px solid #667eea;
}
.wcl-subscription-message.wcl-cancellation-message {
  background: rgba(214, 54, 56, 0.05);
  border-left: 4px solid #d63638;
}
.wcl-subscription-message .wcl-info-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: currentColor;
}
.wcl-subscription-message .wcl-warning-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: #d63638;
}
.wcl-subscription-message p {
  margin: 0;
  color: #333;
}

.wcl-cancellation-warning {
  background: linear-gradient(135deg, rgba(214, 54, 56, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
  border: 2px solid #d63638;
  border-radius: 32px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wcl-cancellation-warning .wcl-warning-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #d63638;
}
.wcl-cancellation-warning .wcl-cancellation-details {
  flex: 1;
}
.wcl-cancellation-warning .wcl-cancellation-details h4 {
  margin: 0 0 8px 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #d63638;
}
.wcl-cancellation-warning .wcl-cancellation-details .wcl-canceled-date {
  margin: 4px 0;
  font-size: 15px;
  color: #666;
}
.wcl-cancellation-warning .wcl-cancellation-details .wcl-balance-warning {
  margin: 12px 0 0 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  font-size: 15px;
  color: #333;
}
.wcl-cancellation-warning .wcl-cancellation-details .wcl-balance-warning strong {
  color: #d63638;
  font-weight: 700;
}
.wcl-cancellation-warning .wcl-cancellation-details .wcl-balance-warning .wcl-balance-note {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.875rem;
  color: #666;
}

.wcl-subscription-canceled {
  opacity: 0.85;
}
.wcl-subscription-canceled .wcl-access-end-date {
  color: #d63638;
  font-weight: 600;
}

.wcl-no-subscription {
  text-align: center;
  padding: 48px 24px;
}
.wcl-no-subscription .wcl-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #ccc;
}
.wcl-no-subscription h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
}
.wcl-no-subscription p {
  color: #666;
  font-size: 0.875rem;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.wcl-payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wcl-payment-method-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 9px;
}
.wcl-payment-method-item .wcl-payment-method-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wcl-payment-method-item .wcl-payment-method-info .wcl-payment-icon {
  width: 40px;
  height: 26px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: #666;
}
.wcl-payment-method-item .wcl-payment-method-info .wcl-payment-details .wcl-payment-type {
  font-weight: 500;
  color: #333;
  font-size: 0.875rem;
}
.wcl-payment-method-item .wcl-payment-method-info .wcl-payment-details .wcl-payment-last4 {
  font-size: 0.75rem;
  color: #666;
}
.wcl-payment-method-item .wcl-payment-default-badge {
  padding: 4px 8px;
  background: rgba(0, 163, 42, 0.1);
  color: #00a32a;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wcl-no-payment-methods {
  text-align: center;
  padding: 32px 16px;
  color: #666;
}
.wcl-no-payment-methods .wcl-empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #ccc;
}
.wcl-no-payment-methods p {
  margin: 0 0 16px 0;
}

.wcl-payment-method-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wcl-payment-method-summary .wcl-card-brand-icon {
  width: 32px;
  height: 20px;
  flex-shrink: 0;
}
.wcl-payment-method-summary .wcl-card-brand-icon text {
  fill: #1434CB;
}
.wcl-payment-method-summary .wcl-card-details {
  font-weight: 500;
  color: #333;
  font-size: 0.875rem;
}
.wcl-payment-method-summary .wcl-card-expiry {
  font-size: 0.75rem;
  color: #666;
  margin-left: auto;
}

.wcl-payment-method-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wcl-default-method {
  border-left: 4px solid #00a32a !important;
}

.wcl-summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}
.wcl-summary-item label {
  font-weight: 500;
  color: #999;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.wcl-summary-item .wcl-summary-value {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
}

.wcl-empty-message {
  color: #999;
  font-style: italic;
  font-size: 0.875rem;
}

.wcl-address-display {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333;
}

#wcl-profile-form,
#wcl-address-form,
#wcl-notifications-form {
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}
@media only screen and (max-width: 543px) {
  #wcl-profile-form,
  #wcl-address-form,
  #wcl-notifications-form {
    box-shadow: none;
    padding: 0;
  }
}

.wcl-dashboard-welcome {
  margin-bottom: 24px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .wcl-dashboard-welcome {
    padding: 0;
  }
}
.wcl-dashboard-welcome h1 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}
@media (min-width: 768px) {
  .wcl-dashboard-welcome h1 {
    font-size: 2rem;
  }
}
.wcl-dashboard-welcome p {
  color: #666;
  margin: 0;
  font-size: 0.875rem;
}

.wcl-account-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 32px;
  padding: 20px 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 200ms ease;
}
@media (min-width: 768px) {
  .wcl-account-card {
    padding: 24px;
    margin-bottom: 24px;
  }
}
.wcl-account-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.wcl-account-card.wcl-card-clickable {
  cursor: pointer;
  border-left: 0 solid transparent;
}
.wcl-account-card.wcl-card-clickable.wcl-subscription-card {
  border-left-color: #667eea;
}
.wcl-account-card.wcl-card-clickable.wcl-profile-card {
  border-left-color: #205d8f;
}
.wcl-account-card.wcl-card-clickable.wcl-address-card {
  border-left-color: #00a32a;
}
.wcl-account-card.wcl-card-clickable:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.wcl-account-card.wcl-card-clickable:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.wcl-account-card.wcl-card-expanded {
  padding: 4px 24px;
  box-shadow: none;
  border-left: 0 solid #205d8f;
  margin-bottom: 32px;
}
.wcl-account-card.wcl-card-expanded .wcl-card-header h2,
.wcl-account-card.wcl-card-expanded .wcl-card-header h3 {
  font-size: 18.75px;
  color: #205d8f;
}
@media (min-width: 768px) {
  .wcl-account-card.wcl-card-expanded .wcl-card-header h2,
  .wcl-account-card.wcl-card-expanded .wcl-card-header h3 {
    font-size: 1.5rem;
  }
}
.wcl-account-card.wcl-card-expanded:hover {
  transform: none;
}
.wcl-account-card.wcl-card-expanded.wcl-subscription-card {
  border-left-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, #ffffff 100%);
}
.wcl-account-card.wcl-card-expanded.wcl-payment-card {
  border-left-color: #00a32a;
}
.wcl-account-card.wcl-card-expanded.wcl-profile-card {
  background: linear-gradient(135deg, rgba(32, 93, 143, 0.03) 0%, #ffffff 100%);
}
.wcl-account-card.wcl-card-expanded.wcl-address-card {
  background: linear-gradient(135deg, rgba(0, 163, 42, 0.03) 0%, #ffffff 100%);
}

.wcl-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f5f5f5;
}
.wcl-card-header h2,
.wcl-card-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
@media (min-width: 768px) {
  .wcl-card-header h2,
  .wcl-card-header h3 {
    font-size: 18.75px;
  }
}
.wcl-card-header .wcl-card-icon {
  width: 24px;
  height: 24px;
  color: #205d8f;
}

.wcl-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wcl-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.wcl-account-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .wcl-account-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .wcl-card-full-width {
    grid-column: 1/-1;
  }
}

.wcl-card-grid-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #e0e0e0;
}
.wcl-card-grid-bottom .wcl-card-grid-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wcl-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.wcl-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.wcl-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: modalSlideIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.wcl-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0 24px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 24px;
}
.wcl-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.wcl-modal-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 9px;
  color: #666;
  transition: all 200ms ease;
}
.wcl-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}
.wcl-modal-close svg {
  width: 20px;
  height: 20px;
}

.wcl-modal-body {
  padding: 0 24px 24px 24px;
  text-align: center;
}

.wcl-modal-icon {
  margin-bottom: 20px;
  color: #667eea;
}
.wcl-modal-icon svg {
  width: 48px;
  height: 48px;
}

#wcl-modal-message p {
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: #333;
  text-align: left !important;
}

.wcl-cancellation-reason-form {
  margin-top: 24px;
  font-size: 1.125rem;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.wcl-cancellation-reason-form .wcl-form-label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.wcl-cancellation-reason-form .wcl-form-label .wcl-optional {
  font-weight: normal;
  color: #666;
  font-size: 0.9em;
}
.wcl-cancellation-reason-form .wcl-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wcl-cancellation-reason-form .wcl-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.wcl-cancellation-reason-form .wcl-radio-group label:hover {
  background: #f5f5f5;
}
.wcl-cancellation-reason-form .wcl-radio-group label:has(input:checked) {
  background: rgba(32, 93, 143, 0.08);
}
.wcl-cancellation-reason-form .wcl-radio-group label input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #205d8f;
}
.wcl-cancellation-reason-form .wcl-other-reason-input {
  display: none;
  width: 100%;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wcl-cancellation-reason-form .wcl-other-reason-input:focus {
  outline: none;
  border-color: #205d8f;
  box-shadow: 0 0 0 3px rgba(32, 93, 143, 0.1);
}
.wcl-cancellation-reason-form .wcl-other-reason-input::-moz-placeholder {
  color: #999;
}
.wcl-cancellation-reason-form .wcl-other-reason-input::placeholder {
  color: #999;
}

.wcl-modal-details {
  background: #f8f9fa;
  border-radius: 32px;
  padding: 16px;
  margin-top: 20px;
  text-align: left;
}

.wcl-modal-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.wcl-modal-detail-item:last-child {
  margin-bottom: 0;
}
.wcl-modal-detail-item strong {
  color: #666;
  font-weight: 600;
}
.wcl-modal-detail-item span {
  color: #333;
  font-weight: 500;
}

.wcl-modal-footer {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}
.wcl-modal-footer .wcl-btn {
  flex: 1;
}

body.wcl-modal-open {
  overflow: hidden;
}

.wcl-test-badge {
  display: inline-block;
  background: #ffb3b3;
  color: #8b0000;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid #ff9999;
  animation: testBadgePulse 2s ease-in-out infinite;
}

@keyframes testBadgePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
#content input#password,
#content .password-input {
  position: relative;
}
#content .woocommerce-form-login__submit {
  margin-top: 16px;
}
#content .woocommerce-form-login__rememberme span {
  display: inline-block;
  font-weight: 400 !important;
  font-size: 0.875rem;
  position: relative;
  top: -2px;
}
#content .woocommerce-LostPassword a {
  color: #205d8f;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
}
#content .woocommerce-LostPassword a:hover {
  color: hsl(207.027027027, 63.4285714286%, -15.6862745098%);
}
#content .woocommerce-ResetPassword {
  margin: 80px 0;
}

.show-password-input {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  right: 8px;
  padding: 2px 4px;
  top: 3px;
}
.show-password-input::after {
  content: "👁";
  font-size: 0.875rem;
  font-weight: 500;
}
.show-password-input:hover {
  color: #205d8f;
}
.show-password-input[aria-pressed=true]::after {
  content: "🕶";
}

.wcl-chevron-icon {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
  margin-left: auto;
  flex-shrink: 0;
}

.wcl-tap-hint {
  display: none;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  font-style: italic;
}
@media (max-width: 767px) {
  .wcl-tap-hint {
    display: block;
    margin-top: 4px;
  }
}

.wcl-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  width: 20px;
  height: 20px;
  animation: ripple 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes ripple {
  to {
    transform: scale(20);
    opacity: 0;
  }
}
button.menu-toggle.main-header-menu-toggle:focus {
  border: none !important;
  outline: none;
}

@media (max-width: 544px) {
  .wcl-my-account-container {
    padding: 0 4px;
  }
  .wcl-my-account-layout {
    gap: 12px;
  }
  .wcl-sidebar-area {
    gap: 12px;
  }
  .wcl-status-table thead th {
    padding: 10px 6px;
    font-size: 0.75rem;
  }
  .wcl-status-table thead th:first-child {
    padding-left: 12px;
  }
  .wcl-status-table thead th:last-child {
    padding-right: 12px;
  }
  .wcl-status-table tbody td {
    padding: 10px 6px;
    font-size: 0.875rem;
  }
  .wcl-status-table tbody td:first-child {
    padding-left: 12px;
  }
  .wcl-status-table tbody td:last-child {
    padding-right: 12px;
  }
  .wcl-status-section-title {
    font-size: 0.875rem;
    margin-bottom: 8px;
    padding-left: 0;
  }
  .wcl-compliance-square {
    width: 12px;
    height: 12px;
  }
  .wcl-status-badge {
    padding: 2px 5px;
    font-size: 0.875rem;
  }
  .wcl-tooltip {
    max-width: 220px;
    font-size: 0.6rem;
    padding: 8px 12px;
  }
  .wcl-status-section {
    margin-bottom: 48px;
  }
  .wcl-btn {
    min-height: 48px;
    font-size: 1.125rem;
  }
  .wcl-account-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-left: -16px;
    margin-right: -16px;
  }
  .wcl-subscription-details {
    gap: 10px;
    padding: 0 0 16px;
    box-shadow: none;
  }
  .wcl-detail-row {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
  }
  .wcl-detail-row:last-child {
    border-bottom: none;
  }
  .wcl-card-header h2,
  .wcl-card-header h3 {
    font-size: 1.125rem;
  }
  .wcl-lock-in-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  .wcl-modal {
    padding: 8px;
  }
  .wcl-modal-content {
    border-radius: 32px;
  }
  .wcl-modal-header,
  .wcl-modal-body,
  .wcl-modal-footer {
    padding: 16px;
  }
  .wcl-modal-footer {
    flex-direction: column;
    gap: 8px;
  }
  .wcl-modal-footer .wcl-btn {
    padding: 14px 24px;
  }
}
@media (min-width: 545px) and (max-width: 921px) {
  .wcl-my-account-container {
    padding: 0;
  }
  .wcl-my-account-layout {
    gap: 16px;
  }
  .wcl-status-table thead th {
    padding: 11px 7px;
  }
  .wcl-status-table thead th:first-child {
    padding-left: 14px;
  }
  .wcl-status-table thead th:last-child {
    padding-right: 14px;
  }
  .wcl-status-table tbody td {
    padding: 11px 7px;
  }
  .wcl-status-table tbody td:first-child {
    padding-left: 14px;
  }
  .wcl-status-table tbody td:last-child {
    padding-right: 14px;
  }
  .wcl-tooltip {
    max-width: 250px;
  }
}
@media (min-width: 922px) {
  .wcl-my-account-container {
    padding: 0;
  }
  .wcl-status-section {
    margin-bottom: 40px;
  }
  .wcl-tooltip {
    max-width: 320px;
  }
}
@media (max-width: 921px) {
  .wcl-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 922px) {
  .wcl-hide-desktop {
    display: none !important;
  }
}

@media (min-width: 545px) {
  .wcl-show-mobile-only {
    display: none !important;
  }
}

.wcl-show-tablet-only {
  display: none;
}
@media (min-width: 545px) and (max-width: 921px) {
  .wcl-show-tablet-only {
    display: block !important;
  }
}

.wcl-show-desktop-only {
  display: none;
}
@media (min-width: 922px) {
  .wcl-show-desktop-only {
    display: block !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wcl-card-collapsed,
  .wcl-card-expanded,
  .wcl-compliance-square,
  .wcl-status-badge,
  .wcl-tooltip,
  .wcl-status-table tbody tr {
    transition: none;
    animation: none;
  }
  .wcl-card-collapsing,
  .wcl-card-expanding {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .wcl-card, .wcl-card-collapsed, .wcl-card-expanded {
    border: 2px solid currentColor;
  }
  .wcl-card-collapsed:hover {
    transform: none;
  }
  .wcl-status-table thead th {
    border: 1px solid #c3c4c7;
  }
  .wcl-status-table tbody td {
    border: 1px solid #c3c4c7;
  }
  .wcl-compliance-square {
    border: 1px solid currentColor;
  }
  .wcl-status-badge {
    border: 1px solid currentColor;
  }
}
@media print {
  .wcl-account-card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
  .wcl-btn,
  .wcl-toggle-switch,
  .wcl-card-footer {
    display: none;
  }
  .woocommerce-MyAccount-content {
    max-width: 100%;
  }
  .wcl-status-table thead {
    background: #f0f0f0 !important;
  }
  .wcl-status-table tbody tr {
    background: #fff !important;
  }
  .wcl-status-table tbody tr:nth-child(even) {
    background: #f8f8f8 !important;
  }
}
.wcl-removal-dashboard {
  padding: 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  margin-bottom: 32px;
}
.wcl-removal-dashboard__title {
  font-size: 18.75px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #c3c4c7;
}
.wcl-removal-dashboard__notice {
  padding: 16px 20px;
  border-radius: 9px;
  margin-bottom: 20px;
  background: #f8f8f8;
  border-left: 4px solid #8c8f94;
}
.wcl-removal-dashboard__notice--warning {
  background: rgb(252.452892562, 246.5834710744, 230.747107438);
  border-left-color: #FF9800;
  color: rgb(65.7, 49.8, 6.9);
}
.wcl-removal-dashboard__notice p {
  margin: 0;
  font-size: 15px;
}
.wcl-removal-dashboard__section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #c3c4c7;
}
.wcl-removal-dashboard__section:last-of-type {
  border-bottom: none;
}
.wcl-removal-dashboard__section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 16px 0;
}
.wcl-removal-dashboard__footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #c3c4c7;
}

.wcl-removal-dashboard__contracted-view {
  margin-bottom: 32px;
}

.wcl-status-summary {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 32px;
}
@media (max-width: 922px) {
  .wcl-status-summary {
    flex-direction: column;
    gap: 16px;
  }
}

.wcl-status-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex: 1;
  justify-content: center;
}
.wcl-status-indicator__label {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
}
.wcl-status-indicator__badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  background-color: #666;
}

.wcl-search-engine {
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 9px;
}
.wcl-search-engine:last-child {
  margin-bottom: 0;
}
.wcl-search-engine__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.wcl-search-engine__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.wcl-search-engine__summary {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c3c4c7;
}
@media (max-width: 922px) {
  .wcl-search-engine__summary {
    flex-direction: column;
    gap: 8px;
  }
}

.wcl-summary-stat {
  font-size: 15px;
  color: #666;
}
.wcl-summary-stat strong {
  color: #333;
  font-weight: 600;
}

.wcl-domains-list {
  display: grid;
  gap: 12px;
}

.wcl-domain-item {
  padding: 12px 16px;
  background: #fff;
  border-radius: 9px;
  border-left: 4px solid #666;
  transition: all 200ms ease;
}
.wcl-domain-item--removed {
  border-left-color: #666;
}
.wcl-domain-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.wcl-domain-item__name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  word-break: break-all;
}
.wcl-domain-item__badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}
.wcl-domain-item__badge--approved {
  background-color: rgb(220.3, 255, 229.2411042945);
  color: rgb(0, 97.8, 25.2);
}
.wcl-domain-item__stats {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  color: #666;
}

.wcl-removal-dashboard__databases .wcl-databases__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 922px) {
  .wcl-removal-dashboard__databases .wcl-databases__header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
.wcl-removal-dashboard__databases .wcl-databases__summary {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 9px;
}
@media (max-width: 922px) {
  .wcl-removal-dashboard__databases .wcl-databases__summary {
    flex-direction: column;
    gap: 8px;
  }
}

.wcl-services-list {
  display: grid;
  gap: 12px;
}

.wcl-service-item {
  padding: 16px;
  background: #fff;
  border-radius: 9px;
  border-left: 4px solid #666;
  transition: all 200ms ease;
}
.wcl-service-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.wcl-service-item__name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.wcl-service-item__type {
  font-size: 0.875rem;
  color: #666;
  padding: 4px 8px;
  background: #f8f8f8;
  border-radius: 3px;
}
.wcl-service-item__status {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.wcl-status-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
}

.wcl-date-label {
  font-size: 0.875rem;
  color: #666;
}

.wcl-removal-empty-state {
  padding: 48px 20px;
  text-align: center;
  color: #666;
  font-size: 15px;
  background: #f8f8f8;
  border-radius: 9px;
}

.wcl-removal-dashboard .wcl-last-updated {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin: 0;
}

@media (max-width: 544px) {
  .wcl-removal-dashboard {
    padding: 16px;
  }
  .wcl-removal-dashboard__title {
    font-size: 1.125rem;
  }
  .wcl-removal-dashboard__section-title {
    font-size: 15px;
  }
  .wcl-search-engine {
    padding: 16px;
  }
  .wcl-domain-item__header,
  .wcl-service-item__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.wcl-card-notifications .wcl-notifications-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 9px;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #856404;
  font-size: 0.875rem;
  line-height: 1.5;
}
.wcl-card-notifications .wcl-notifications-warning p {
  margin: 0;
}
.wcl-card-notifications .wcl-notifications-warning strong {
  font-weight: 600;
}
.wcl-card-notifications .wcl-notification-section {
  border: none;
  padding: 0;
  margin: 24px 0 24px 0;
}
.wcl-card-notifications .wcl-notification-section:last-of-type {
  margin-top: 32px;
}
.wcl-card-notifications .wcl-notification-section legend {
  font-weight: 600;
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 8px;
  padding: 0;
  border: none !important;
}
.wcl-card-notifications .wcl-notification-section .wcl-field-description {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}
.wcl-card-notifications .wcl-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wcl-card-notifications .wcl-radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 9px;
  cursor: pointer;
  transition: all 200ms ease;
  background: #fff;
  position: relative;
}
.wcl-card-notifications .wcl-radio-label:hover {
  border-color: #f0f7fc;
  background: #fafbfc;
}
.wcl-card-notifications .wcl-radio-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.wcl-card-notifications .wcl-radio-label .wcl-radio-text {
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
}
.wcl-card-notifications .wcl-radio-label:has(input:checked) {
  border-color: #205d8f;
  background: #205d8f;
}
.wcl-card-notifications .wcl-radio-label:has(input:checked) .wcl-radio-text {
  color: #fff;
}
.wcl-card-notifications .wcl-radio-label:has(input:focus-visible) {
  outline: 2px solid #205d8f;
  outline-offset: 2px;
}
.wcl-card-notifications .wcl-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wcl-card-notifications .wcl-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 9px;
  cursor: pointer;
  transition: all 200ms ease;
  background: #fff;
  position: relative;
}
.wcl-card-notifications .wcl-checkbox-label:hover {
  border-color: #f0f7fc;
  background: #fafbfc;
}
.wcl-card-notifications .wcl-checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.wcl-card-notifications .wcl-checkbox-label .wcl-checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wcl-card-notifications .wcl-checkbox-label .wcl-checkbox-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
}
.wcl-card-notifications .wcl-checkbox-label .wcl-checkbox-text .wcl-checkbox-description {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}
.wcl-card-notifications .wcl-checkbox-label:has(input:checked) {
  border-color: #205d8f;
  background: #205d8f;
}
.wcl-card-notifications .wcl-checkbox-label:has(input:checked) .wcl-checkbox-text strong {
  color: #fff;
}
.wcl-card-notifications .wcl-checkbox-label:has(input:checked) .wcl-checkbox-text .wcl-checkbox-description {
  color: rgba(255, 255, 255, 0.85);
}
.wcl-card-notifications .wcl-checkbox-label:has(input:focus-visible) {
  outline: 2px solid #205d8f;
  outline-offset: 2px;
}

.wcl-form-messages {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 0.875rem;
  line-height: 1.5;
  display: none;
}
.wcl-form-messages.wcl-message-success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.wcl-form-messages.wcl-message-error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.wcl-form-messages p {
  margin: 0;
}