/*
 * LSH Google Reviews Plugin Stylesheet
 * File: /assets/css/lsh-reviews.css
 */

/* ==========================================================================
   1. Reviews Badge Styles
   ========================================================================== */

.lsh-badge-wrapper {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  width: auto;
  max-width: 100%;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", sans-serif-condensed, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: rgb(79, 79, 77);
  box-sizing: border-box;
  cursor: pointer;
}

.lsh-badge-embed,
.lsh-badge-main,
.lsh-badge-badge,
.lsh-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lsh-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lsh-badge-logo svg {
  display: block;
  width: 42px;
  height: 42px;
}

.lsh-badge-no-google .lsh-badge-logo {
  display: none;
}

.lsh-badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
}

.lsh-badge-rating-group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.lsh-badge-rating-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lsh-badge-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #111827;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", sans-serif-condensed, sans-serif;
}

.lsh-stars-bar,
.lsh-badge-stars-bar,
.lsh-reviews-header-stars,
.lsh-modal-stars {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
}

.lsh-star-item {
  display: inline-block !important;
  position: relative !important;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  vertical-align: middle;
}

.lsh-badge-stars-bar .lsh-star-item {
  width: 24px;
  height: 24px;
}

.lsh-reviews-header-stars .lsh-star-item {
  width: 17px;
  height: 17px;
}

.lsh-modal-stars .lsh-star-item {
  width: 22px;
  height: 22px;
}

.lsh-star-unfilled {
  display: block !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.lsh-star-unfilled svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.lsh-star-unfilled svg path {
  fill: #94a3b8 !important;
}

.lsh-star-filled {
  display: block !important;
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100% !important;
  overflow: hidden !important;
  z-index: 2;
}

.lsh-star-filled svg {
  display: block !important;
  height: 100% !important;
  width: 18px !important;
  min-width: 18px !important;
}

.lsh-badge-stars-bar .lsh-star-filled svg {
  width: 24px !important;
  min-width: 24px !important;
}

.lsh-reviews-header-stars .lsh-star-filled svg {
  width: 17px !important;
  min-width: 17px !important;
}

.lsh-modal-stars .lsh-star-filled svg {
  width: 22px !important;
  min-width: 22px !important;
}

.lsh-star-filled svg path {
  fill: #fcbf02 !important;
}

.lsh-badge-reviews-count {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #64748b;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", sans-serif-condensed, sans-serif;
  cursor: pointer;
}

/* ==========================================================================
   2. Review Cards, Swiper & Grid Layouts
   ========================================================================== */

.lsh-review-card {
  background: #f8f9fa;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lsh-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.lsh-review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lsh-review-avatar,
.lsh-review-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lsh-review-avatar-placeholder {
  background: #64748b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.lsh-review-author-meta {
  flex-grow: 1;
}

.lsh-review-author-name {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  line-height: 1.25;
}

.lsh-review-author-name a {
  color: inherit;
  text-decoration: none;
}

.lsh-review-author-name a:hover {
  text-decoration: underline;
}

.lsh-review-time {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.lsh-review-google-icon {
  flex-shrink: 0;
}

.lsh-review-stars {
  display: block;
  margin-bottom: 12px;
}

.lsh-review-stars .lsh-stars-bar {
  display: flex !important;
  align-items: center;
  gap: 3px;
}

.lsh-review-stars .lsh-star-item {
  width: 18px !important;
  height: 18px !important;
}

.lsh-review-stars .lsh-star-filled svg,
.lsh-review-stars .lsh-star-unfilled svg {
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
}

.lsh-review-text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #1e293b;
  flex-grow: 1;
  word-break: break-word;
}

.lsh-read-more-btn {
  color: #0084ff;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  display: inline;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 3px;
  transition: color 0.15s ease;
  user-select: none;
}

.lsh-read-more-btn:hover {
  color: #0060ba;
}

/* Top Google Reviews Header Bar */
.lsh-reviews-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
}

.lsh-reviews-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.lsh-reviews-header-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.lsh-reviews-header-brand .lsh-google-logo-svg {
  display: block;
  width: 64px;
  height: 26px;
}

.lsh-reviews-header-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
  letter-spacing: -0.2px;
}

.lsh-reviews-header-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lsh-reviews-header-score {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.lsh-reviews-header-stars {
  margin-bottom: 0 !important;
}

.lsh-reviews-header-count {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1;
}

.lsh-reviews-header-right {
  display: flex;
  align-items: center;
}

.lsh-btn-review-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0084ff;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.lsh-btn-review-google:hover {
  background-color: #0070d8;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 132, 255, 0.25);
}

.lsh-btn-review-google:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .lsh-reviews-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .lsh-reviews-header-right,
  .lsh-btn-review-google {
    width: 100%;
  }
  .lsh-btn-review-google {
    text-align: center;
  }
}

/* Swiper overrides */
.lsh-reviews-slider-wrapper,
.lsh-reviews-grid-outer {
  position: relative;
  margin: 20px auto 40px auto;
  padding: 0 16px;
  max-width: 100%;
  box-sizing: border-box;
}

.lsh-reviews-swiper {
  padding: 14px 10px 55px 10px !important;
  position: relative;
  overflow: hidden;
}

.lsh-reviews-swiper .swiper-pagination {
  position: absolute;
  bottom: 8px !important;
  left: 50% !important;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 10;
}

.lsh-reviews-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: #cbd5e1;
  opacity: 0.7;
  border-radius: 50%;
  transition: all 0.25s ease;
  cursor: pointer;
}

.lsh-reviews-swiper .swiper-pagination-bullet-active {
  background: #fcbf02 !important;
  opacity: 1 !important;
  transform: scale(1.2);
}

.lsh-reviews-swiper .swiper-button-next,
.lsh-reviews-swiper .swiper-button-prev {
  display: none !important;
}

/* Grid layout */
.lsh-reviews-grid-wrapper {
  display: grid;
  gap: 20px;
  margin: 15px 0;
}

.lsh-grid-cols-1 { grid-template-columns: 1fr; }
.lsh-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lsh-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lsh-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .lsh-grid-cols-3, .lsh-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .lsh-grid-cols-2, .lsh-grid-cols-3, .lsh-grid-cols-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   3. Admin Dashboard Styles
   ========================================================================== */

.lsh-admin-wrap {
  margin: 20px 20px 0 0;
}

.lsh-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.lsh-admin-header .lsh-admin-title {
  margin: 0;
}

.lsh-admin-footer {
  margin: 28px 0 12px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.lsh-reviews-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.lsh-reviews-toolbar h3 {
  margin: 0;
}

.lsh-reviews-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.lsh-reviews-filters input[type="search"] {
  min-width: 220px;
}

.lsh-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.lsh-stat-card {
  background: #ffffff;
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.lsh-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #646970;
  font-weight: 600;
}

.lsh-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1d2327;
  margin-top: 5px;
}

.lsh-progress-bar {
  background: #e2e8f0;
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
  margin-top: 10px;
}

.lsh-progress-fill {
  background: #007cba;
  height: 100%;
  transition: width 0.3s ease;
}

.lsh-last-fetch-meta {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #646970;
}

.lsh-stat-breakdown {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #646970;
}

.lsh-progress-fill.lsh-exceeded {
  background: #d63638;
}

.lsh-badge-danger {
  display: inline-block;
  background: #fcf0f1;
  color: #d63638;
  border: 1px solid #d63638;
  padding: 2px 6px;
  font-size: 11px;
  border-radius: 4px;
  margin-top: 6px;
  font-weight: 600;
}

.lsh-admin-card {
  background: #ffffff;
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}

.lsh-admin-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lsh-col-4 { flex: 1 1 300px; }
.lsh-col-8 { flex: 2 1 500px; }

/* Shortcode Cheat Sheet UI */
.lsh-shortcode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.lsh-shortcode-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  background: #f8fafc;
}

.lsh-shortcode-card h4 {
  margin: 0 0 8px 0;
  color: #0f172a;
}

.lsh-code-box {
  background: #0f172a;
  color: #38bdf8;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 14px;
  cursor: pointer;
  margin: 10px 0;
  user-select: all;
  transition: background 0.2s ease;
}

.lsh-code-box:hover {
  background: #1e293b;
}

.lsh-code-box:active {
  transform: scale(0.99);
}

@keyframes lshSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dashicons.spin {
  animation: lshSpin 1s infinite linear;
}

/* ==========================================================================
   4. Modal Popup Styles (Elfsight Replica)
   ========================================================================== */

.lsh-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.lsh-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.lsh-modal-container {
  position: relative;
  z-index: 2;
  width: 580px;
  max-width: 92vw;
  max-height: 85vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: lshModalZoom 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lshModalZoom {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

#lsh-reviews-modal .lsh-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #1e293b;
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}

#lsh-reviews-modal .lsh-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: scale(1.05);
}

#lsh-reviews-modal .lsh-modal-close svg path {
  fill: #475569;
}

#lsh-reviews-modal .lsh-modal-header {
  padding: 24px 28px 18px 28px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
}

.lsh-modal-header-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lsh-modal-header-text {
  font-weight: 700;
  font-size: 20px;
  color: #0f172a;
}

.lsh-modal-header-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lsh-modal-rating-num {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

.lsh-modal-reviews-count {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
}

.lsh-modal-body {
  padding: 20px 28px 28px 28px;
  overflow-y: auto;
  flex-grow: 1;
}

.lsh-modal-review-item {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 20px 0;
  position: relative;
  transition: background-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
}

.lsh-modal-review-item.lsh-review-highlight {
  background-color: #f0f7ff;
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.3);
}

.lsh-modal-review-item:last-child {
  border-bottom: none;
}

.lsh-modal-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.lsh-modal-avatar,
.lsh-modal-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lsh-modal-avatar-placeholder {
  background: #64748b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.lsh-modal-author-name {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
}

.lsh-modal-review-time {
  font-size: 12px;
  color: #64748b;
}

.lsh-modal-review-stars {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}

.lsh-modal-review-stars .lsh-star-item {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lsh-modal-review-stars .lsh-star-item svg {
  width: 18px;
  height: 18px;
}

.lsh-modal-review-stars .lsh-star-filled svg path {
  fill: #ffb400;
}

.lsh-modal-review-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1e293b;
  margin-bottom: 10px;
}

.lsh-modal-google-badge {
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.lsh-modal-google-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.lsh-modal-google-link:hover {
  opacity: 1;
  transform: scale(1.04);
}

.lsh-modal-trigger {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.lsh-modal-trigger:hover {
  opacity: 0.85;
}

.lsh-modal-load-more-wrap,
.lsh-grid-load-more-wrap {
  text-align: center;
  margin: 18px 0 10px 0;
  padding: 0;
}

.lsh-modal-load-more-btn,
.lsh-grid-load-more-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 6px 16px !important;
  border-radius: 9999px !important;
  border: 1px solid #cbd5e1 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  text-decoration: none !important;
  min-height: unset !important;
  min-width: unset !important;
  width: auto !important;
  height: auto !important;
}

.lsh-modal-load-more-btn:hover,
.lsh-grid-load-more-btn:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
  border-color: #94a3b8 !important;
  transform: none !important;
  box-shadow: none !important;
}

.lsh-modal-load-more-btn:disabled,
.lsh-grid-load-more-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.lsh-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 100100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.lsh-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(3px);
}

.lsh-guide-panel {
  position: relative;
  z-index: 1;
  width: 720px;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.lsh-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.lsh-guide-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #0f172a;
}

.lsh-guide-close {
  border: none;
  background: #f1f5f9;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #334155;
  flex-shrink: 0;
}

.lsh-guide-close:hover {
  background: #e2e8f0;
}

.lsh-guide-body {
  padding: 8px 24px 28px;
  overflow-y: auto;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.lsh-guide-lead {
  font-size: 15px;
  color: #1e293b;
}

.lsh-guide-body h3 {
  margin: 22px 0 8px;
  font-size: 16px;
  color: #0f172a;
}

.lsh-guide-body ul,
.lsh-guide-body ol {
  margin: 0 0 12px 1.2em;
}

.lsh-guide-body li {
  margin-bottom: 6px;
}

.lsh-guide-body code {
  display: inline-block;
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.lsh-uninstall-modal {
  position: fixed;
  inset: 0;
  z-index: 100200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.lsh-uninstall-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.lsh-uninstall-panel {
  position: relative;
  z-index: 1;
  width: 520px;
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.lsh-uninstall-panel h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f172a;
}

.lsh-uninstall-body,
.lsh-uninstall-status {
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.lsh-uninstall-status {
  color: #047857;
  font-weight: 600;
}

.lsh-uninstall-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
