/* WordPress-like admin styling */
.wp-wrap {
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
    padding: 20px;
}

.wp-heading {
    font-size: 23px;
    margin-bottom: 20px;
}

.wp-tabs {
    border-bottom: 1px solid #ccd0d4;
    margin-bottom: 20px;
}

.wp-tabs button {
    background: none;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
}

.wp-tabs .active {
    border-bottom: 3px solid #2271b1;
    font-weight: 600;
}

.wp-content {
    max-width: 1000px;
}

.card {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 20px;
    border-radius: 4px;
}

.field {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.field input,
.field select {
    width: 100%;
    max-width: 400px;
    padding: 6px 8px;
    border: 1px solid #ccd0d4;
}

.inline {
    display: flex;
    gap: 8px;
}

.primary {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 2px;
}

.secondary {
    background: #f0f0f1;
    border: 1px solid #ccd0d4;
}

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

.wp-table th,
.wp-table td {
    border: 1px solid #ccd0d4;
    padding: 8px;
    text-align: left;
}

.status li {
    margin-bottom: 6px;
}

.wc-settings {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 24px 20px;
}

.wc-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.wc-nav {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid #ccd0d4;
    margin-bottom: 24px;
}

.wc-nav button {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 14px;
    cursor: pointer;
    color: #1d2327;
}

.wc-nav button.active {
    color: #2271b1;
    border-bottom: 2px solid #2271b1;
    font-weight: 600;
}

.wpgsa-notice {
  position: fixed;
  top: 50px;
  right: 20px;
  padding: 12px 16px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

.wpgsa-notice button {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
}

.wpgsa-success {
  background: #46b450; /* WP green */
}

.wpgsa-error {
  background: #dc3232; /* WP red */
}

.wpgsa-warning {
  background: #ffb900; /* WP orange */
}

