/* --- Savvy Directory Edit Form (Dark Glass Version) --- */

#savvy-profile-editor .savvy-membership { margin-top: 24px; }
#savvy-profile-editor .savvy-membership .savvy-levels {
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
#savvy-profile-editor .savvy-level { border:1px solid #ddd; border-radius:10px; padding:16px; background:#fff; }
#savvy-profile-editor .savvy-level.featured { border-color:#4a7c59; box-shadow:0 6px 18px rgba(0,0,0,.06); }
#savvy-profile-editor .savvy-level.is-selected { outline:3px solid #4a7c59; }
#savvy-profile-editor .savvy-level h4 { margin:0 0 8px; }
#savvy-profile-editor .savvy-level .price { font-weight:700; margin-bottom:10px; }
#savvy-profile-editor .savvy-level ul { margin:0 0 12px 18px; padding:0; }
#savvy-profile-editor .savvy-province-suggest { display:none; position:absolute; left:0; right:0; background:#fff; border:1px solid #ddd; border-radius:6px; z-index:1000; }

/* --- Profile Editor Form (Savvy Style) --- */
#savvy-profile-editor {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  max-width: 800px;
}

#savvy-profile-editor h3 {
  font-size: 1.5rem;
  color: #1d1d1f;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(74, 124, 89, 0.25);
  padding-bottom: 0.75rem;
}

/* Field layout */
#savvy-profile-editor p {
  margin-bottom: 1rem;
}

#savvy-profile-editor label {
  display: block;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 6px;
  font-size: 16px;
}

#savvy-profile-editor input[type="text"],
#savvy-profile-editor input[type="email"],
#savvy-profile-editor input[type="url"],
#savvy-profile-editor select,
#savvy-profile-editor textarea {
  width: 100%;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 16px;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

#savvy-profile-editor input:focus,
#savvy-profile-editor select:focus,
#savvy-profile-editor textarea:focus {
  outline: none;
  border-color: #6eb98d;
  box-shadow:
    0 0 0 3px rgba(110, 185, 141, 0.25),
    0 0 10px rgba(74, 124, 89, 0.15);
  background: #fff;
}

/* Select dropdown arrow */
#savvy-profile-editor select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.95)
    url("data:image/svg+xml,%3Csvg fill='%234a7c59' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  background-size: 16px;
}

/* Textarea */
#savvy-profile-editor textarea {
  min-height: 100px;
  resize: vertical;
}

/* Button */
#savvy-profile-editor button[type="submit"] {
  display: inline-block;
  background: linear-gradient(135deg, #4a7c59 0%, #6eb98d 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 12px 36px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 16px rgba(74, 124, 89, 0.25);
  transition: all 0.25s ease;
}

#savvy-profile-editor button[type="submit"]:hover {
  background: linear-gradient(135deg, #5fa778 0%, #4a7c59 100%) !important;
  box-shadow: 0 10px 20px rgba(74, 124, 89, 0.3);
  transform: translateY(-2px);
}

/* --- Membership Level Cards (above the form) --- */
.savvy-membership {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.savvy-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.savvy-level {
  background: #fff;
  border: 1px solid rgba(74, 124, 89, 0.25);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.savvy-level:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
}

.savvy-level.is-selected {
  border-color: #4a7c59;
  box-shadow: 0 0 0 3px rgba(110, 185, 141, 0.25);
}

.savvy-level h4 {
  color: #1d1d1f;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.savvy-level .price {
  color: #4a7c59;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.savvy-level ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.savvy-level ul li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.4rem;
}

/* Buttons */
.savvy-level .button {
  background: #4a7c59;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
}

.savvy-level .button:hover {
  background: #6eb98d;
}

#savvy-profile-message.success {
  color: #4a7c59;
  font-weight: 600;
}
#savvy-profile-message.error {
  color: #a94442;
  font-weight: 600;
}

/* === Savvy Directory Dashboard - Polished Version === */
.savvy-dashboard {
  max-width: 950px;
  margin: 3rem auto;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1a1a1a;
}

.savvy-dashboard-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* === Refined Table Spacing / No Lines === */
.savvy-dashboard-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 1.5rem 2rem;
  transition: box-shadow 0.3s ease;
}

.savvy-profile-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem; /* <— spacing between rows */
  font-size: 0.98rem;
  border-width: 0;
}

.savvy-profile-table thead {
  background: none;
  border: none;
}

.savvy-profile-table th {
  text-align: left;
  font-weight: 600;
  padding: 0.75rem 1rem;
  color: #444;
  letter-spacing: 0.3px;
  border: none;
}

.savvy-profile-table tbody tr {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.savvy-profile-table tbody tr:hover {
  background: #f9fcfa;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.savvy-profile-table td {
  padding: 1rem 1.25rem;
  border: none;
  color: #333;
}

/* Round corners on rows */
.savvy-profile-table tbody tr td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.savvy-profile-table tbody tr td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Status badges */
.profile-status {
  display: inline-flex;
  align-items: center;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.profile-status.publish {
  background: #e7f6ee;
  color: #276b47;
}
.profile-status.pending {
  background: #fff5e5;
  color: #b07800;
}

/* Buttons */
.savvy-btn-primary {
  background: linear-gradient(135deg, #4a7c59 0%, #6eb98d 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(74, 124, 89, 0.2);
}
.savvy-btn-primary:hover {
  background: linear-gradient(135deg, #5fa778 0%, #4a7c59 100%);
  box-shadow: 0 6px 16px rgba(74, 124, 89, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

/* Footer */
.savvy-dashboard-footer {
  text-align: right;
  margin-top: 1.75rem;
}
.savvy-btn-accent {
  background: linear-gradient(135deg, #4a7c59, #6eb98d);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.25);
  font-weight: 600;
  transition: all 0.25s ease;
}
.savvy-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
  color: #fff;
}

.savvy-review-toggle {
    background: #f3f3f3;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savvy-toggle-icon {
    font-weight: bold;
    font-size: 18px;
}

.savvy-review-toggle {
    cursor: pointer;
    padding: 8px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savvy-toggle-icon {
    font-size: 18px;
    font-weight: bold;
}

/* DEFAULT: collapsed */
.savvy-review-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

/* EXPANDED */
.savvy-review-panel.open {
    max-height: 1000px; /* large enough for long reviews */
    opacity: 1;
    pointer-events: auto;
}

/* Ensure collapsible panels animate inside table layouts */
.savvy-review-row td {
    padding: 0 !important;
}

.savvy-review-panel {
    display: block; /* Allow max-height animation inside tables */
    width: 100%;
    background: #fafafa;
    border-top: 1px solid #ddd;
    padding: 0 12px 0 12px;
}

/* Optional: more attractive open padding */
.savvy-review-panel.open {
    padding: 12px;
}

/* Responsive Layout */
@media (max-width: 700px) {
  .savvy-profile-table,
  .savvy-profile-table thead,
  .savvy-profile-table tbody,
  .savvy-profile-table th,
  .savvy-profile-table td,
  .savvy-profile-table tr {
    display: block;
  }

  .savvy-profile-table thead {
    display: none;
  }

  .savvy-profile-table tr {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .savvy-profile-table td {
    border: none;
    padding: 0.9rem 1rem;
    position: relative;
  }

  .savvy-profile-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.4rem;
  }

  .savvy-dashboard-footer {
    text-align: center;
  }
}

/* ------------------------------
   Savvy Dashboard Shell
   (used by [savvy_my_reviews], profiles, saved providers)
   ------------------------------ */

.savvy-dashboard {
    max-width: 980px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
                 "Segoe UI", sans-serif;
    color: #0f172a; /* slate-900 */
}

.savvy-dashboard-title {
    font-size: clamp(1.8rem, 2.2vw, 2.1rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    color: #0f172a;
}

/* Subtle page background feeling (relies on body color underneath) */
.savvy-dashboard + * {
    margin-top: 24px;
}

/* Main card container */
.savvy-dashboard-card {
    background: radial-gradient(circle at top left, #ffffff 0, #f5f5f7 55%, #eef2ff 100%);
    border-radius: 22px;
    padding: 24px 28px;
    border: 1px solid rgba(148, 163, 184, 0.35); /* slate-400 */
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.10),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(12px);
}

/* Tighten padding slightly on very small screens */
@media (max-width: 640px) {
    .savvy-dashboard-card {
        padding: 18px 16px;
        border-radius: 18px;
    }
}

/* Base table */
.savvy-profile-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    font-size: 0.95rem;
}

/* Header */
.savvy-profile-table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280; /* gray-500 */
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    white-space: nowrap;
}

/* Body cells */
.savvy-profile-table tbody td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #edf2f7;
    color: #111827;
    vertical-align: middle;
}

/* Last row – no heavy bottom border */
.savvy-profile-table tbody tr:last-child td {
    border-bottom-color: transparent;
}

/* Zebra & hover state */
.savvy-profile-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.6);
}
.savvy-profile-table tbody tr:nth-child(even) {
    background: rgba(248, 250, 252, 0.9); /* slate-50 */
}

.savvy-profile-table tbody tr {
    transition: background 150ms ease-out, transform 120ms ease-out,
                box-shadow 120ms ease-out;
}
.savvy-profile-table tbody tr:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

/* Provider column – make it feel like a link/information cell */
.savvy-profile-table td a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}
.savvy-profile-table td a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* "Your Review" text – soften color slightly */
.savvy-profile-table td:nth-child(3) {
    color: #374151; /* gray-700 */
    line-height: 1.4;
}

/* Status column as pill labels; works for My Reviews + other tables
   (classes: .published, .unpublished, .pending, .draft, etc.) */
.savvy-profile-table td.published,
.savvy-profile-table td.unpublished,
.savvy-profile-table td.pending,
.savvy-profile-table td.draft {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Published */
.savvy-profile-table td.published {
    color: #166534;
}
.savvy-profile-table td.published::before {
    content: "● ";
    color: #22c55e;
}

/* Unpublished / Pending style */
.savvy-profile-table td.unpublished,
.savvy-profile-table td.pending,
.savvy-profile-table td.draft {
    color: #92400e;
}
.savvy-profile-table td.unpublished::before,
.savvy-profile-table td.pending::before,
.savvy-profile-table td.draft::before {
    content: "● ";
    color: #fbbf24;
}

/* Base Savvy button */
.savvy-btn,
.savvy-dashboard .button.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.2;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #f9fafb;
    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.25),
        0 0 0 1px rgba(148, 163, 184, 0.35) inset;
    text-decoration: none;
    transition: transform 120ms ease-out,
                box-shadow 120ms ease-out,
                background 120ms ease-out,
                border-color 120ms ease-out,
                color 120ms ease-out;
}

/* Variant: primary accent (can be used when you specifically add savvy-btn-primary) */
.savvy-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow:
        0 8px 22px rgba(37, 99, 235, 0.55),
        0 0 0 1px rgba(191, 219, 254, 0.7) inset;
}

/* Hover / active */
.savvy-btn:hover,
.savvy-dashboard .button.button-primary:hover,
.savvy-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.28),
        0 0 0 1px rgba(148, 163, 184, 0.45) inset;
    filter: brightness(1.04);
}
.savvy-btn:active,
.savvy-dashboard .button.button-primary:active,
.savvy-btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.35),
        0 0 0 1px rgba(30, 64, 175, 0.8) inset;
}

/* Disabled feel, if ever used */
.savvy-btn[disabled],
.savvy-btn.is-disabled {
    opacity: 0.6;
    cursor: default;
    box-shadow: none;
}

/* Wrapper for star sets */
.savvy-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 0; /* reset to avoid extra spacing */
}

/* Stars themselves */
.savvy-stars .star {
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    transition: transform 120ms ease-out, filter 120ms ease-out;
}

/* Full star – gold */
.savvy-stars .star.full {
    color: #facc15; /* yellow-400 */
    text-shadow: 0 0 4px rgba(250, 204, 21, 0.6);
}

/* Half star – lighter / outline hybrid */
.savvy-stars .star.half {
    color: #facc15;
    filter: opacity(0.6);
}

/* Empty stars – soft gray */
.savvy-stars .star.empty {
    color: #d1d5db;
}

/* Subtle pop on hover over the row */
.savvy-profile-table tbody tr:hover .savvy-stars .star.full,
.savvy-profile-table tbody tr:hover .savvy-stars .star.half {
    transform: translateY(-0.5px);
    filter: brightness(1.05);
}

@media (max-width: 640px) {
    .savvy-profile-table thead {
        display: none;
    }

    .savvy-profile-table,
    .savvy-profile-table tbody,
    .savvy-profile-table tr,
    .savvy-profile-table td {
        display: block;
        width: 100%;
    }

    .savvy-profile-table tbody tr {
        border-radius: 18px;
        margin-bottom: 14px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.96);
    }

    .savvy-profile-table tbody td {
        border-bottom: 0;
        padding: 0.55rem 0.9rem;
    }

    .savvy-profile-table tbody td:first-child {
        padding-top: 0.8rem;
    }
    .savvy-profile-table tbody td:last-child {
        padding-bottom: 0.9rem;
    }

    /* Fake labels on mobile using data attributes if you want later.
       For now, we rely on visual order + context. */
}

/* Align action buttons right on desktop */
@media (min-width: 641px) {
    .savvy-profile-table tbody td:last-child {
        text-align: right;
        white-space: nowrap;
    }
}

/* ----------------------------------------------------
   SAVVY BUTTONS — Apple Hybrid Style
   Primary color: #468B5C
---------------------------------------------------- */

.savvy-btn,
.savvy-btn-primary,
button.savvy-btn,
button.savvy-btn-primary,
.savvy-profile-table a.savvy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #468B5C 0%, #5FA87A 100%);
    color: #fff !important;

    padding: 0.65rem 1.4rem;
    border-radius: 12px;
    border: none;

    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;

    box-shadow:
        0 4px 12px rgba(70, 139, 92, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
    text-decoration: none !important;
    cursor: pointer;
}

/* Hover */
.savvy-btn:hover,
.savvy-btn-primary:hover,
button.savvy-btn:hover,
button.savvy-btn-primary:hover {
    background: linear-gradient(135deg, #5FA87A 0%, #468B5C 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 18px rgba(70, 139, 92, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    text-decoration: none !important; /* ← No underline EVER */
}

/* Pressed (active) state */
.savvy-btn:active,
.savvy-btn-primary:active {
    transform: translateY(0px);
    box-shadow:
        0 3px 8px rgba(70, 139, 92, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Disabled */
.savvy-btn:disabled,
.savvy-btn[disabled],
.savvy-btn-primary:disabled {
    background: #bfcfc6;
    color: #fefefe !important;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ============================================================
   UNIVERSAL SAVVY TABLE STYLE (Apple Hybrid)
   Applies to: .savvy-profile-table, .savvy-review-table, etc.
   ============================================================ */

/* Table Wrapper (Card) */
.savvy-profile-table,
.savvy-review-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;
    font-size: 0.97rem;
}

/* Table Header */
.savvy-profile-table thead tr,
.savvy-review-table thead tr {
    background: transparent;
}

.savvy-profile-table th,
.savvy-review-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #383838;
    letter-spacing: 0.25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Table Row (Card Style) */
.savvy-profile-table tbody tr,
.savvy-review-table tbody tr {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.savvy-profile-table tbody tr:hover,
.savvy-review-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Cells */
.savvy-profile-table td,
.savvy-review-table td {
    padding: 1rem 1.25rem;
    color: #2a2a2a;
    border: none;
}

/* Round First/Last Cells */
.savvy-profile-table tbody tr td:first-child,
.savvy-review-table tbody tr td:first-child {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.savvy-profile-table tbody tr td:last-child,
.savvy-review-table tbody tr td:last-child {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

/* ============================================================
   BUTTONS (Savvy Green Apple Style)
   ============================================================ */

.savvy-btn,
.savvy-btn-primary {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff !important;
    background: linear-gradient(135deg, #468B5C 0%, #5BAA78 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(70, 139, 92, 0.25);
    transition: all 0.25s ease;
    text-decoration: none !important;
    cursor: pointer;
}

.savvy-btn:hover,
.savvy-btn-primary:hover {
    background: linear-gradient(135deg, #5BAA78 0%, #468B5C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(70, 139, 92, 0.30);
    text-decoration: none !important;
}

/* Remove underline on provider name links */
.savvy-profile-table a,
.savvy-review-table a {
    text-decoration: none !important;
    color: #1a1a1a;
}

.savvy-profile-table a:hover,
.savvy-review-table a:hover {
    opacity: 0.65;
}

/* ============================================================
   MOBILE RESPONSIVE MODE
   ============================================================ */

@media (max-width: 700px) {
    .savvy-profile-table,
    .savvy-review-table,
    .savvy-profile-table tbody,
    .savvy-review-table tbody,
    .savvy-profile-table tr,
    .savvy-review-table tr,
    .savvy-profile-table td,
    .savvy-review-table td {
        display: block;
        width: 100%;
    }

    .savvy-profile-table tr,
    .savvy-review-table tr {
        margin-bottom: 1.25rem;
        border-radius: 16px;
    }

    .savvy-profile-table td::before,
    .savvy-review-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        font-weight: 600;
        color: #666;
        font-size: 0.8rem;
    }
}