/* ========== Poll Vote ========== */

.content {
  width: 1060px;                    /* უფრო განიერი (theme.css) */
  margin: 0 auto;
}

.content h2 {
  margin: 0;
  padding: 25px 0 10px 0;
  font-size: 22px;
  font-weight: 600;
  color: #474b50;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.content .block {
  box-shadow: 0px 0px 7px 1px rgba(45, 54, 68, 0.05);
  margin: 10px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #fff;
}
.poll-vote h1 {
  font-size: 20px;
  padding: 15px 0;
  margin: 0;
  font-weight: 500;
  color: #474b50;
}

.poll-vote .desc {
  color: #707985;
  font-size: 14px;
  padding-bottom: 15px;
  margin: 0;
}

.poll-vote form {
  display: flex;
  flex-flow: column;
}

/* Label - გაერთიანებული (theme-ის card სტილი + style-ის padding) */
.poll-vote form label {
  display: flex;
  align-items: center;
  padding: 10px 7px;
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  max-width: 300px;
  font-weight: 500;
  cursor: pointer;
  color: #707985;
}

.poll-vote form label:has(input[type=radio]:checked) {
  border: 1px solid #1EC497;
}

/* Radio button - theme-ის custom სტილი */
.poll-vote form input[type=radio] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  margin-right: 12px;
  transform: scale(1.1);            /* style.css-დან დამატებული */
}

.poll-vote form input[type=radio]:checked {
  border: 2px solid #1EC497;
}

.poll-vote form input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1EC497;
  margin: 2px;
}

/* ღილაკები და ბმულები (style.css-დან + theme-ის .btn) */
.poll-vote form button,
.poll-vote form a,
.poll-vote form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  background: #2873cf;
  color: #FFFFFF;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  height: 35px;
  width: 120px;
  margin-top: 10px;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.1);
}

.poll-vote form button:hover,
.poll-vote form a:hover,
.poll-vote form .btn:hover {
  background: #266cc2;
}

.poll-vote form a {
  text-align: center;
  background-color: #37afb7;
  margin-left: 6px;
}

.poll-vote form a:hover {
  background-color: #319ca3;
}

/* Custom answer button */
.poll-vote form .add-custom-answer {
  margin-bottom: 15px;
}

.poll-vote form #add-custom-toggle {
  width: 300px;                 /* იგივე სიგანე რაც label-ებს აქვს */
  max-width: 100%;
  height: 38px;
  background: #f1f3f4;
  color: #474b50;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
  margin-top: 5px;
}

.poll-vote form #add-custom-toggle:hover {
  background: #e8eaed;
  border-color: #c1c6cb;
}

/* Custom answer input */
.poll-vote form #custom-answer-input {
  width: 300px !important;
  max-width: 100%;
  height: 38px;
  padding: 0 12px;
  margin-top: 8px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
}

/* ========== Two-column layout (vote form | meta) ========== */

.poll-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 15px 0;
}

.poll-col-vote {
  flex: 0 0 340px;
}

.poll-col-vote form {
  padding: 0;
}

.poll-col-meta {
  flex: 1;
  min-width: 0;
  padding-left: 30px;
  border-left: 1px solid #e9eaec;
}

@media screen and (max-width: 800px) {
  .poll-columns {
    flex-flow: column;
  }
  .poll-col-meta {
    border-left: none;
    border-top: 1px solid #e9eaec;
    padding-left: 0;
    padding-top: 20px;
  }
}

/* ========== Meta tag / meta list (category badge + word info) ========== */

.meta-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  background: #eaf1fb;
  color: #2873cf;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin: 0;
}

.meta-row {
  background: #f7f8fa;
  border: 1px solid #e9eaec;
  border-radius: 8px;
  padding: 10px 14px;
}

.meta-row dt {
  margin: 0 0 4px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #9a9ea3;
}

.meta-row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #33373b;
  line-height: 1.4;
}

.meta-row.wide {
  grid-column: 1 / -1;
}