/* =========================================================
   My Entitlements Table
   ========================================================= */
.leefhub-my-entitlements {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.leefhub-my-entitlements thead {
  background: #f9fafb;
  border-bottom: 2px solid #ddd;
}

.leefhub-my-entitlements th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.leefhub-my-entitlements td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.leefhub-my-entitlements tbody tr:nth-child(even) {
  background: #fdfdfd;
}

/* Status badges */
.leefhub-my-entitlements td:last-child {
  font-weight: 600;
}

.leefhub-status-active,
.leefhub-status-expired,
.leefhub-status-revoked {
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  /* colors injected dynamically via Shortcodes settings */
}

/* =========================================================
   Card-based Shortcodes (Purchase Options, Subscriptions, Packs)
   ========================================================= */

/* Base wrapper */
.leefhub-shortcode {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

/* Card container */
.leefhub-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 1rem 1.25rem;
  transition: box-shadow 0.2s ease;
}
.leefhub-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Headings */
.leefhub-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

/* Price highlight */
.leefhub-card .price {
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

/* Description */
.leefhub-card p {
  margin: 0 0 0.75rem;
  color: #4a5568;
  font-size: 0.9rem;
}

/* Buttons (colors injected dynamically) */
.leefhub-card .button {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  display: inline-block;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  /* background + text colors are injected dynamically */
}