/* ==========================================================================
   IBH Feedback — Minimal Button-Only Design
   Card border/box removed. Only two buttons with percentage.
   ========================================================================== */

.ibh-feedback-card {
margin: 30px 0;
text-align: center;
background: #fff;
border-radius: 20px;
padding: 12px 2px;
 box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.ibh-feedback-question {
font-size: 17px;
font-weight: 800;
color: #374151;
margin: 0 0 14px;
}

/* ── Button row ── */
.ibh-feedback-btns {
display: flex;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}

/* ==== feedback vote button ===== */
.ibh-vote-btn {
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 10px;
padding: 8px 40px;
min-width: 140px;
font-size: 14px;
font-weight: 600;
color: #374151;
background: #f3f4f6;
border: 1.5px solid #e5e7eb;
border-radius: 999px;
cursor: pointer;
transition: background .18s, border-color .18s, transform .15s;
-webkit-appearance: none;
}
.ibh-vote-btn:hover {
 transform: translateY(-2px);
box-shadow: 0 4px 14px rgba(0,0,0,.10);
}
.ibh-vote-btn:active { transform: scale(.97); }

/* ===== emoji, svg icon ===== */
.ibh-vote-emoji { font-size: 18px; line-height: 1; }
.ibh-vote-emoji svg { width: 22px; height: 22px; display: block; }

/* ===== vote percentage ====== */
.ibh-vote-pct {
font-size: 12px;
font-weight: 700;
color: #374151;
letter-spacing: .02em;
white-space: nowrap;
}

/* ===== Yes button ===== */
.ibh-vote-yes:hover {
 background: #f3f4f6;
border-color: #d1d5db;
}
.ibh-vote-yes.ibh-voted {
background: #f3f4f6;
border-color: #9ca3af;
color: #374151;
cursor: default;
}
.ibh-vote-yes.ibh-voted .ibh-vote-pct { color: #374151; }

/* ===== No button ===== */
.ibh-vote-no:hover {
background: #f3f4f6;
border-color: #d1d5db;
}
.ibh-vote-no.ibh-voted {
background: #f3f4f6;
border-color: #9ca3af;
color: #374151;
cursor: default;
}
.ibh-vote-no.ibh-voted .ibh-vote-pct { color: #374151; }

/* ===== Loading spinner ======= */
.ibh-vote-btn.ibh-loading { opacity: .6; pointer-events: none; }

/* ==================================
  Result message (small, below    buttons) 
================================== */
.ibh-feedback-result {
margin-top: 12px;
font-size: 16px;
color: #384A5A;
}
.ibh-feedback-comment-link {
display: inline-block;
margin-top: 6px;
padding: 7px 18px;
background: linear-gradient(135deg,#2563eb,#1d4ed8);
color: #fff !important;
font-size: 16px;
font-weight: 700;
text-decoration: none;
border-radius: 50px;
transition: transform .15s;
}
.ibh-feedback-comment-link:hover { transform: translateY(-2px); color: #fff !important; }
.ibh-feedback-comment-link:visited { color: #fff !important; }

.ibh-feedback-result .ibh-feedback-comment-link {
 color: #fff !important;
text-decoration: none !important;
}
.ibh-feedback-result .ibh-feedback-comment-link:hover,
.ibh-feedback-result .ibh-feedback-comment-link:visited {
color: #fff !important;
text-decoration: none !important;
}
.ibh-vote-btn:focus,
.ibh-vote-btn:active,
.ibh-vote-btn.ibh-voted:focus,
.ibh-vote-btn.ibh-voted:active {
outline: none;
}

/* ======== Mobile ========= */
@media (max-width: 420px) {
    .ibh-vote-btn { min-width: 90px; padding: 8px 16px; }
}
