.fwp-notice {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
}

.fwp-adminarea {
  --fwp-bg: #0b1220;
  --fwp-panel: #0f1b33;
  --fwp-card: #0d1730;
  --fwp-text: #e9eefc;
  --fwp-muted: rgba(233, 238, 252, 0.75);
  --fwp-line: rgba(233, 238, 252, 0.14);
  --fwp-accent: #4f7cff;
  --fwp-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  display: flex;
  min-height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--fwp-bg);
  color: var(--fwp-text);
  box-shadow: var(--fwp-shadow);
}

.fwp-sidebar {
  width: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid var(--fwp-line);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fwp-navbtn {
  appearance: none;
  border: 1px solid var(--fwp-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fwp-text);
  border-radius: 14px;
  height: 54px;
  width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
}

.fwp-navbtn .dashicons {
  font-size: 26px;
  width: 26px;
  height: 26px;
}

.fwp-navbtn.is-active {
  border-color: rgba(79, 124, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.25);
}

.fwp-content {
  flex: 1;
  padding: 18px 18px 20px;
}

.fwp-title {
  margin: 4px 0 14px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--fwp-text);
}

.fwp-panel {
  display: none;
}
.fwp-panel.is-active {
  display: block;
}

.fwp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fwp-line);
  border-radius: 16px;
  padding: 14px;
}

.fwp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px;
}

.fwp-label {
  color: var(--fwp-muted);
}

.fwp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(79, 124, 255, 0.5);
  background: rgba(79, 124, 255, 0.12);
  color: var(--fwp-text);
  text-decoration: none;
}
.fwp-btn:hover {
  background: rgba(79, 124, 255, 0.18);
}

.fwp-tablewrap {
  border: 1px solid var(--fwp-line);
  border-radius: 16px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.02);
}

.fwp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.fwp-table th,
.fwp-table td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--fwp-line);
  vertical-align: middle;
}

.fwp-table th {
  color: var(--fwp-muted);
  text-align: left;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
}

.fwp-col-icon {
  width: 76px;
}

.fwp-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--fwp-line);
}
.fwp-thumb--placeholder {
  background: rgba(255, 255, 255, 0.05);
}

.fwp-col-price {
  width: 140px;
  white-space: nowrap;
}

.fwp-col-title {
  min-width: 260px;
}

.fwp-product-link,
.fwp-order-link {
  color: inherit;
  text-decoration: none;
}
.fwp-product-link:hover,
.fwp-product-link:focus-visible,
.fwp-order-link:hover,
.fwp-order-link:focus-visible {
  text-decoration: underline;
}

.fwp-thwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fwp-thcol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.fwp-filter {
  width: min(240px, 42vw);
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--fwp-line);
  background: rgba(0, 0, 0, 0.18);
  color: var(--fwp-text);
  outline: none;
}
.fwp-filter::placeholder {
  color: rgba(233, 238, 252, 0.55);
}
.fwp-filter:focus {
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.22);
  border-color: rgba(79, 124, 255, 0.7);
}

.fwp-col-active {
  width: 200px;
  white-space: nowrap;
}

.fwp-empty {
  color: var(--fwp-muted);
  text-align: center;
  padding: 18px 12px;
}

.fwp-hint {
  margin-top: 10px;
  color: var(--fwp-muted);
  font-size: 13px;
}

.fwp-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 32px;
  margin-right: 10px;
  vertical-align: middle;
}

.fwp-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.fwp-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid var(--fwp-line);
  transition: 180ms;
  border-radius: 999px;
}

.fwp-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 3px;
  top: 2px;
  background: #ffffff;
  transition: 180ms;
  border-radius: 999px;
}

.fwp-switch input:checked + .fwp-slider {
  background: rgba(79, 124, 255, 0.6);
  border-color: rgba(79, 124, 255, 0.8);
}

.fwp-switch input:checked + .fwp-slider:before {
  transform: translateX(24px);
}

.fwp-status {
  color: var(--fwp-muted);
}

.fwp-col-date {
  width: 220px;
  white-space: nowrap;
}
.fwp-col-area {
  width: 110px;
}
.fwp-col-table {
  width: 80px;
}
.fwp-col-status {
  width: 140px;
}

.fwp-col-client {
  min-width: 280px;
}

.fwp-col-order {
  width: 110px;
  white-space: nowrap;
}
.fwp-col-ordering {
  width: 90px;
  text-align: center;
}
.fwp-drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--fwp-line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fwp-muted);
  cursor: grab;
}
.fwp-drag-handle:active {
  cursor: grabbing;
}
.fwp-table tr.is-dragging {
  opacity: 0.6;
}

.fwp-col-total {
  width: 140px;
  white-space: nowrap;
}

.fwp-col-actions {
  width: 220px;
  white-space: nowrap;
}

.fwp-select {
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid var(--fwp-line);
  background: #0b1220;
  color: var(--fwp-text);
  outline: none;
}
.fwp-select option,
.fwp-select optgroup {
  background: #0b1220;
  color: var(--fwp-text);
}
.fwp-col-actions .fwp-select {
  width: min(240px, 44vw);
}
.fwp-select:focus {
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.22);
  border-color: rgba(79, 124, 255, 0.7);
}

.fwp-input {
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid var(--fwp-line);
  background: #0b1220;
  color: var(--fwp-text);
  outline: none;
}
.fwp-input:focus {
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.22);
  border-color: rgba(79, 124, 255, 0.7);
}

.fwp-stats-filters {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid var(--fwp-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.fwp-stats-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fwp-stats-field label {
  color: var(--fwp-muted);
  font-size: 13px;
}

.fwp-stats-field .fwp-select,
.fwp-stats-field .fwp-input {
  width: 170px;
}

.fwp-date-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 170px;
}

.fwp-date-control .fwp-input {
  width: 100%;
  padding-right: 42px;
}

.fwp-date-button {
  appearance: none;
  position: absolute;
  right: 4px;
  width: 34px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--fwp-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fwp-date-button:hover,
.fwp-date-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fwp-text);
  outline: none;
}

.fwp-native-date {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.fwp-stats-submit {
  min-height: 40px;
}

.fwp-stats-period {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--fwp-muted);
}

.fwp-stats-period strong {
  color: var(--fwp-text);
}

.fwp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.fwp-stats-card {
  min-height: 118px;
  padding: 14px;
  border: 1px solid var(--fwp-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.fwp-stats-card--juridica {
  border-color: rgba(241, 196, 15, 0.38);
}

.fwp-stats-card--total {
  border-color: rgba(79, 124, 255, 0.48);
  background: rgba(79, 124, 255, 0.1);
}

.fwp-stats-card-label {
  color: var(--fwp-muted);
  font-size: 13px;
}

.fwp-stats-card-value {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.fwp-stats-card-meta {
  margin-top: 8px;
  color: var(--fwp-muted);
  font-size: 13px;
}

.fwp-stats-tablewrap {
  margin-top: 6px;
}

.fwp-stats-table {
  min-width: 560px;
}

.fwp-inline-status {
  margin-left: 10px;
  color: var(--fwp-muted);
  font-size: 13px;
}

.fwp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--fwp-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fwp-text);
  font-size: 13px;
}
.fwp-pill--confirmed {
  border-color: rgba(46, 204, 113, 0.55);
  background: rgba(46, 204, 113, 0.12);
}
.fwp-pill--booked {
  border-color: rgba(79, 124, 255, 0.55);
  background: rgba(79, 124, 255, 0.12);
}
.fwp-pill--pending {
  border-color: rgba(241, 196, 15, 0.55);
  background: rgba(241, 196, 15, 0.12);
}

.fwp-pill--completed {
  border-color: rgba(46, 204, 113, 0.55);
  background: rgba(46, 204, 113, 0.12);
}
.fwp-pill--processing,
.fwp-pill--on-hold {
  border-color: rgba(79, 124, 255, 0.55);
  background: rgba(79, 124, 255, 0.12);
}
.fwp-pill--cancelled,
.fwp-pill--failed,
.fwp-pill--refunded {
  border-color: rgba(231, 76, 60, 0.55);
  background: rgba(231, 76, 60, 0.12);
}

@media (max-width: 720px) {
  .fwp-adminarea {
    border-radius: 14px;
  }
  .fwp-sidebar {
    width: 72px;
  }
  .fwp-content {
    padding: 14px 14px 16px;
  }
  .fwp-stats-grid {
    grid-template-columns: 1fr;
  }
  .fwp-stats-field,
  .fwp-stats-field .fwp-select,
  .fwp-stats-field .fwp-input,
  .fwp-date-control,
  .fwp-stats-submit {
    width: 100%;
  }
}


.fwp-notice {
    padding: 20px;
    font-size: 20px;
 
}


.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-text-input label {
top: 10px!important;
}
