/* ── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  /* FIX 2: echte achtergrond van de originele blog */
  background-color: #eaecd8;
  background-image: url('/images/background_pattern.png');
  background-repeat: repeat;
  background-size: 786px 746px;
}

a { color: #c0601a; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ─────────────────────────────────────────────────────────── */
#header-wrapper {
  background: #d97b29;
  padding: 14px 20px;
}
#header h1 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.5px;
}
#header h1 a { color: #fff; }
#header h1 a:hover { text-decoration: none; opacity: 0.9; }

/* ── Cutlery banner strip ────────────────────────────────────────────── */
#banner {
  height: 8px;
  background: #d97b29;
  border-bottom: 3px solid #b85e18;
}

/* ── Layout ─────────────────────────────────────────────────────────── */
#outer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 10px;
}
#content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
#main-wrapper { flex: 1; min-width: 0; }

/* ── Post Card ──────────────────────────────────────────────────────── */
.post-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 16px 20px;
  margin-bottom: 16px;
  border-radius: 2px;
  overflow: hidden;
}
.post-date {
  color: #777;
  font-size: 12px;
  margin-bottom: 6px;
}
.post-image-wrap {
  float: right;
  margin: 0 0 12px 16px;
  max-width: 260px;
}
.post-image-wrap img {
  max-width: 260px;
  max-height: 220px;
  object-fit: cover;
  display: block;
  border: 1px solid #ddd;
}
.post-image-full { margin-bottom: 14px; }
.post-image-full img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}
.post-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.post-title a { color: #333; }
.post-title a:hover { color: #c0601a; }

/* FIX 5: volledige inhoud stijlen */
.post-content {
  color: #333;
  line-height: 1.75;
  margin-bottom: 12px;
  clear: both; /* zodat het na de float-afbeelding verschijnt */
}
.post-content br { display: block; content: ''; margin-bottom: 3px; }
.post-content ul, .post-content ol { margin: 6px 0 6px 22px; }
.post-content li { margin-bottom: 3px; }
.post-content a { color: #c0601a; }
.post-content img {
  max-width: 320px;
  height: auto;
  border: 1px solid #ddd;
  margin: 0 0 12px 16px;
  float: right;
  display: block;
}
/* Standalone images (no link wrapper) on their own line */
.post-content > img {
  float: right;
  margin: 0 0 12px 16px;
}
/* Blogger float-afbeeldingen netjes houden */
.post-content a[imageanchor] img,
.post-content a[style*="float"] img {
  max-width: 300px;
  margin: 0 0 10px 10px;
  display: inline;
}

.post-footer {
  font-size: 12px;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  clear: both;
}
.author-name { color: #c0601a; }
.cat-tag {
  background: #f5f0e0;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 1px 6px;
  font-size: 11px;
  color: #666;
}
.cat-tag:hover { background: #e8e0c8; text-decoration: none; }
.edit-link { color: #888; font-size: 11px; margin-left: auto; }
.edit-link:hover { color: #c0601a; }

/* ── Pagination ─────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.page-btn {
  background: #d97b29;
  color: #fff;
  padding: 5px 14px;
  border-radius: 2px;
  font-size: 12px;
}
.page-btn:hover { background: #c0601a; text-decoration: none; }
.page-info { color: #888; font-size: 12px; }

.page-header {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 20px;
  margin-bottom: 14px;
}
.page-header h2 { font-size: 16px; }
.result-count { color: #888; font-size: 12px; margin-top: 4px; }

.back-link { margin-top: 12px; font-size: 12px; }

/* ── Sidebar ────────────────────────────────────────────────────────── */
#sidebar-wrapper {
  width: 230px;
  flex-shrink: 0;
}
.sidebar-section {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 2px;
}
.sidebar-section h2 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
.sidebar-section p { font-size: 12px; color: #555; line-height: 1.5; }

/* FIX 1: Nieuw recept knop */
.sidebar-new-recipe {
  background: #fff8f0;
  border: 1px solid #e8b070;
  text-align: center;
  padding: 10px;
}
.btn-new-recipe {
  display: block;
  background: #d97b29;
  color: #fff !important;
  padding: 8px 12px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  text-decoration: none !important;
}
.btn-new-recipe:hover { background: #c0601a; }

/* FIX 3: Foto sidebar */
.sidebar-photo { padding: 0; overflow: hidden; }
.sidebar-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FIX 4: Label Cloud - kleiner en met wrapping ───────────────────── */
#label-cloud {
  line-height: 1.9;
  word-break: break-word;
  overflow-wrap: break-word;
}
.label-link {
  color: #c0601a;
  white-space: nowrap;
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 1px;
}
.label-link:hover { text-decoration: underline; }
.label-link.active { font-weight: bold; text-decoration: underline; }

/* ── Search ─────────────────────────────────────────────────────────── */
#search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
}
#search-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #bbb;
  padding: 4px 7px;
  font-size: 12px;
  border-radius: 2px;
}
#search-input:focus { outline: none; border-color: #d97b29; }
#search-form button {
  background: #fff;
  border: 1px solid #bbb;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 2px;
}
#search-form button:hover { background: #f5f0e0; }

/* FIX 8: suggesties dropdown */
#search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #bbb;
  border-top: none;
  z-index: 200;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
#search-suggestions.visible { display: block; }
.suggestion-item {
  padding: 7px 10px;
  cursor: pointer;
  font-size: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.suggestion-item:hover,
.suggestion-item.selected { background: #fff3e0; }
.suggestion-item mark { background: #ffe082; font-style: normal; padding: 0 1px; }

/* ── Admin link ─────────────────────────────────────────────────────── */
.admin-link-section { text-align: center; }
.admin-link { color: #888; font-size: 12px; }
.admin-link:hover { color: #c0601a; }

/* ── Flash messages ─────────────────────────────────────────────────── */
.flash {
  padding: 8px 14px;
  border-radius: 2px;
  margin-bottom: 12px;
  font-size: 13px;
}
.flash-success { background: #dff0d8; border: 1px solid #c3e6cb; color: #276221; }
.flash-error   { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }

.no-results {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  text-align: center;
  color: #666;
}

/* ── Admin Panel ────────────────────────────────────────────────────── */
.admin-panel {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.admin-header h2 { font-size: 16px; }

.btn-primary {
  background: #d97b29;
  color: #fff;
  padding: 7px 18px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #c0601a; text-decoration: none; color: #fff; }
.btn-secondary {
  background: #f5f0e0;
  color: #555;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { background: #e8e0c8; text-decoration: none; }
.btn-edit {
  background: #e8f0ff;
  color: #3050a0;
  padding: 3px 10px;
  border: 1px solid #c0d0ff;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}
.btn-edit:hover { background: #d0e0ff; text-decoration: none; }
.btn-delete {
  background: #fff0f0;
  color: #a00;
  padding: 3px 10px;
  border: 1px solid #fcc;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
}
.btn-delete:hover { background: #ffe0e0; }

.admin-search { display: flex; gap: 8px; margin-bottom: 12px; }
.admin-search input {
  flex: 1;
  border: 1px solid #bbb;
  padding: 5px 8px;
  font-size: 13px;
  border-radius: 2px;
}
.admin-search button {
  background: #eee;
  border: 1px solid #bbb;
  padding: 5px 14px;
  cursor: pointer;
  border-radius: 2px;
}
.clear-search { color: #888; font-size: 12px; line-height: 32px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th {
  background: #f5f0e0;
  border: 1px solid #ddd;
  padding: 7px 10px;
  text-align: left;
  font-weight: bold;
  color: #555;
}
.admin-table td { border: 1px solid #eee; padding: 6px 10px; vertical-align: middle; }
.admin-table tr:hover td { background: #faf8f2; }
.admin-table .actions { display: flex; gap: 6px; align-items: center; white-space: nowrap; }

/* ── FIX 7: WYSIWYG Editor ──────────────────────────────────────────── */
.edit-form { margin-top: 8px; }
.form-row { margin-bottom: 18px; }
.form-row > label {
  display: block;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 5px;
  color: #444;
}
.form-row input[type=text],
.form-row input[type=datetime-local],
.form-row select {
  width: 100%;
  border: 1px solid #bbb;
  padding: 6px 8px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  border-radius: 2px;
}
.form-row input:focus,
.form-row select:focus { outline: none; border-color: #d97b29; }
.form-row small { color: #888; font-size: 11px; display: block; margin-top: 3px; }
.slug-preview { color: #999; font-size: 11px; }

.form-row-half { display: flex; gap: 16px; }
.form-row-half > div { flex: 1; }

.wysiwyg-toolbar {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  background: #f0ece0;
  border: 1px solid #bbb;
  border-bottom: none;
  padding: 5px 8px;
  border-radius: 2px 2px 0 0;
  flex-wrap: wrap;
  align-items: center;
}
.wysiwyg-toolbar button {
  background: #fff;
  border: 1px solid #ccc;
  padding: 3px 10px;
  cursor: pointer;
  font-size: 13px;
  border-radius: 2px;
  min-width: 32px;
}
.wysiwyg-toolbar button:hover { background: #e8e0c8; }
.wysiwyg-toolbar button.active { background: #d97b29; color: #fff; border-color: #b85e18; }
.toolbar-sep {
  width: 1px;
  height: 20px;
  background: #ccc;
  margin: 0 4px;
}

.wysiwyg-editor {
  width: 100%;
  min-height: 320px;
  border: 1px solid #bbb;
  border-radius: 0 0 2px 2px;
  padding: 12px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: #333;
  outline: none;
  background: #fff;
  overflow-y: auto;
}
.wysiwyg-editor:focus { border-color: #d97b29; }
.wysiwyg-editor img { max-width: 100%; height: auto; }
.wysiwyg-editor ul { margin: 6px 0 6px 22px; }
.wysiwyg-editor li { margin-bottom: 3px; }

.source-textarea {
  width: 100%;
  min-height: 320px;
  border: 1px solid #d97b29;
  border-radius: 0 0 2px 2px;
  padding: 10px 12px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  resize: vertical;
  background: #fffdf8;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.cat-checkbox {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f5f0e0;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 3px 8px;
  font-size: 12px;
  cursor: pointer;
  font-weight: normal;
}
.cat-checkbox:hover { background: #e8e0c8; }
.cat-checkbox input { margin: 0; }

.new-cat-row input {
  border: 1px solid #bbb;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 2px;
  width: 240px;
}
.new-cat-row input:focus { outline: none; border-color: #d97b29; }

.current-image {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 8px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 2px;
}
.current-image span { font-size: 12px; color: #666; }

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
#footer {
  text-align: center;
  padding: 16px;
  color: #999;
  font-size: 11px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
  background: rgba(255,255,255,0.5);
}

/* ── Label zoeken (admin) ────────────────────────────────────────────── */
.label-top10 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.label-search-row {
  position: relative;
  margin-bottom: 8px;
}
.label-search-row input {
  width: 100%;
  border: 1px solid #bbb;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 2px;
}
.label-search-row input:focus { outline: none; border-color: #d97b29; }
#label-suggestions {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #bbb;
  border-top: none;
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}
.label-suggestion-item {
  padding: 7px 12px;
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}
.label-suggestion-item:hover,
.label-suggestion-item.selected { background: #fff3e0; }
.label-suggestion-item.already-checked { color: #2a7a2a; background: #f0faf0; }
.label-suggestion-item.already-checked.selected { background: #d0f0d0; }
.label-suggestion-new {
  padding: 7px 12px;
  cursor: pointer;
  font-size: 13px;
  color: #d97b29;
  font-style: italic;
  border-top: 1px solid #eee;
}
.label-suggestion-new:hover,
.label-suggestion-new.selected { background: #fff3e0; }
#extra-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.new-label-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff8f0;
  border: 1px solid #e8b070;
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 13px;
  margin-top: 4px;
}
.btn-add-label {
  background: #d97b29;
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
}
.btn-add-label:hover { background: #c0601a; }

/* ── Responsive / Mobiel ────────────────────────────────────────────── */

/* Mobiel-only labels verborgen op desktop */
.sidebar-mobile-labels { display: none; }

@media (max-width: 700px) {
  #content-wrapper { flex-direction: column; }

  /* Sidebar boven de recepten op mobiel */
  #main-wrapper { order: 2; }
  #sidebar-wrapper { width: 100%; order: 1; }

  /* Verberg grote secties op mobiel */
  .sidebar-photo,
  .sidebar-description,
  .sidebar-labels-full,
  .admin-link-section,
  .backup-section-sidebar { display: none; }

  /* Toon de compacte mobiele versies */
  .sidebar-mobile-labels { display: block; }

  /* Compactere padding op mobiel */
  .sidebar-section { padding: 10px 12px; margin-bottom: 10px; }
  .sidebar-new-recipe { padding: 8px 10px; }

  .post-image-wrap { float: none; max-width: 100%; margin: 0 0 10px 0; }
  .post-image-wrap img { max-width: 100%; }
  .form-row-half { flex-direction: column; }
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 5px 6px; }
  #outer-wrapper { padding: 10px 6px; }
}

/* ── Backup sidebar ──────────────────────────────────────────────────── */
.backup-section-sidebar { }
.backup-section-sidebar h2 { margin-bottom: 10px; }
.backup-btn {
  display: block;
  text-align: center;
  padding: 7px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  text-decoration: none !important;
}
.download-btn {
  background: #e8f4e8;
  border: 1px solid #a0c8a0;
  color: #2a6e2a;
}
.download-btn:hover { background: #d0ecd0; }
.restore-btn {
  background: #fff3e0;
  border: 1px solid #e8b070;
  color: #7a4400;
}
.restore-btn:hover { background: #ffe8c0; }

/* ── Admin tabs ──────────────────────────────────────────────────────── */
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #d97b29;
  margin-bottom: 0;
}
.admin-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: bold;
  color: #666;
  text-decoration: none;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  background: #f5f0e0;
  margin-right: 3px;
  position: relative;
  bottom: -2px;
}
.admin-tab:hover { background: #ece4cc; text-decoration: none; color: #333; }
.admin-tab.active {
  background: #fff;
  color: #d97b29;
  border-color: #d97b29;
  border-bottom-color: #fff;
  z-index: 1;
}
.admin-tab-content {
  padding-top: 20px;
}
.admin-header-info { font-size: 12px; color: #888; }
.admin-help {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
  font-style: italic;
}
.admin-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.admin-section h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}
.inline-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.inline-form input[type=text] {
  border: 1px solid #bbb;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 2px;
  width: 240px;
}
.inline-form input:focus { outline: none; border-color: #d97b29; }

/* ── Inline label/auteur edit ────────────────────────────────────────── */
.label-edit-form {
  display: flex;
  align-items: center;
  gap: 6px;
}
.label-edit-input {
  border: 1px solid #d97b29;
  padding: 4px 8px;
  font-size: 13px;
  border-radius: 2px;
  width: 160px;
}
.label-edit-input:focus { outline: none; }
.btn-save-inline {
  background: #d0f0d0;
  border: 1px solid #80b880;
  color: #2a6e2a;
  padding: 3px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}
.btn-save-inline:hover { background: #b8e8b8; }
.btn-cancel-inline {
  background: #f5f0e0;
  border: 1px solid #ccc;
  color: #666;
  padding: 3px 8px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
}
.btn-cancel-inline:hover { background: #e8e0c8; }

/* ── Beheer knop in sidebar (fix 2) ─────────────────────────────────── */
.sidebar-beheer { text-align: center; padding: 10px; }
.btn-beheer {
  display: block;
  background: #555;
  color: #fff !important;
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  letter-spacing: 0.3px;
}
.btn-beheer:hover { background: #333; text-decoration: none !important; }

/* ── Mobiele beheer bar (fix 3) ──────────────────────────────────────── */
.mobile-beheer-bar {
  display: none;
  padding: 12px 10px;
  text-align: center;
}
.btn-beheer-mobile {
  display: inline-block;
  background: #555;
  color: #fff !important;
  padding: 10px 30px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none !important;
}
.btn-beheer-mobile:hover { background: #333; }

@media (max-width: 700px) {
  .mobile-beheer-bar { display: block; }
  /* Beheer knop in sidebar ook verbergen op mobiel (al verborgen via sidebar-beheer) */
  .sidebar-beheer { display: none; }
}

/* ── Deel-balk ───────────────────────────────────────────────────────── */
.share-bar {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 12px 16px;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.share-label {
  font-size: 13px;
  font-weight: bold;
  color: #555;
  margin-right: 4px;
}
.share-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none !important;
  border: none;
  white-space: nowrap;
}
.share-copy {
  background: #f0f0f0;
  border: 1px solid #ccc !important;
  color: #333;
}
.share-copy:hover { background: #e0e0e0; }
.share-whatsapp {
  background: #25d366;
  color: #fff !important;
}
.share-whatsapp:hover { background: #1da851; }
.share-email {
  background: #f0f4ff;
  border: 1px solid #c0d0ff !important;
  color: #3050a0;
}
.share-email:hover { background: #dce8ff; }
.copy-confirm {
  font-size: 12px;
  color: #2a7a2a;
  font-weight: bold;
}
@media (max-width: 700px) {
  .share-bar { gap: 6px; }
  .share-btn { padding: 7px 12px; font-size: 12px; }
}

/* ── Compacte deel-tags in post-footer ──────────────────────────────── */
.share-inline {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  vertical-align: middle;
}
.share-tag {
  background: #f5f0e0;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 1px 7px;
  font-size: 11px;
  color: #555;
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.share-tag:hover { background: #e8e0c8; color: #333; text-decoration: none !important; }
.share-tag-wa { color: #1a8a3e; border-color: #b8e0c8; background: #f0faf4; }
.share-tag-wa:hover { background: #d8f0e4; }

.share-inline-label {
  font-size: 11px;
  color: #888;
  margin-right: 2px;
}
