/* El Macondo Quiz – elegantno minimalno UI */
.elmacondo-quiz { 
  /* CSS Custom Properties - dizajneri mogu ih override-at u theme CSS-u */
  --eq-bg: transparent;       /* pozadinska boja */
  --eq-ac: #92400e;           /* accent boja (dugmad) */
  --eq-ink: #3b2f2f;          /* tekst boja */
  --eq-line: #f4e3d3;         /* border boja */
  --eq-radius: 20px;          /* border radius */
  --eq-padding: 24px;         /* padding */
  --eq-shadow: 0 6px 18px rgba(146,64,14,.08); /* shadow */
}
.elmacondo-quiz .eq-card{background:var(--eq-bg);border:1px solid var(--eq-line);border-radius:var(--eq-radius);padding:var(--eq-padding);max-width:900px;margin:0 auto;box-shadow:var(--eq-shadow)}
.elmacondo-quiz .eq-title{font-size:28px;line-height:1.15;color:var(--eq-ink);margin:0 0 6px;font-weight:800}
.elmacondo-quiz .eq-subtitle{color:#6b4e3d;margin:0 0 16px}
.elmacondo-quiz .eq-timehint{opacity:.75}
.eq-progress{height:6px;background:#fff;border-radius:999px;border:1px solid var(--eq-line);overflow:hidden;margin:10px 0 18px}
.eq-progress > div{height:100%;background:var(--eq-ac);width:0;transition:width .35s ease}
.eq-question{margin:12px 0 6px;font-weight:700;color:var(--eq-ink)}
.eq-options{display:grid;grid-template-columns:1fr;gap:10px}
@media (min-width:640px){.eq-options{grid-template-columns:repeat(3,1fr)}}
.eq-opt{
  border:2px solid #e5e5e5;
  background:#fff;
  border-radius:0;
  padding:12px 14px;
  cursor:pointer;
  text-align:center;
  transition:all .25s ease;
  font-weight:500;
  color:#3E3E3E;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.eq-opt:hover{
  border-color:#fbbc34;
  background:#fff;
}
.eq-opt[aria-pressed=\"true\"], .eq-opt.eq-active{
  background:#fff;
  border-color:#fbbc34;
  color:#3E3E3E;
  box-shadow:none;
}
.eq-actions{display:flex;gap:10px;justify-content:space-between;margin-top:16px;flex-wrap:wrap}
.eq-btn{
  background:#fbbc34;
  color:#fff;
  border:none;
  border-radius:0;
  padding:12px 20px;
  min-height:42px;
  cursor:pointer;
  font-weight:600;
  font-size:13px;
  text-transform:uppercase;
  transition:all 0.25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  line-height:1.2;
  vertical-align:middle;
}
.eq-btn:hover{
  background:#fbbc34;
  color:#fff;
  box-shadow:inset 0 0 0 1000px rgba(0,0,0,0.1);
}
.eq-btn.eq-ghost{
  background:#212121;
  color:#fff;
  border:none;
}
.eq-btn.eq-ghost:hover{
  background:#212121;
  color:#fff;
}
.eq-results{display:grid;grid-template-columns:1fr;gap:14px;margin-top:10px}
@media (min-width:860px){.eq-results{grid-template-columns:repeat(3,1fr)}}
.eq-card-small{background:#fff;border:1px solid var(--eq-line);border-radius:16px;padding:12px}
.eq-card-small .eq-btn{
  font-size:11px;
  padding:0 12px;
  height:36px;
  min-height:36px;
  margin-top:8px;
  line-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.eq-card-small .eq-btn:first-of-type{
  margin-right:6px;
}
.eq-cig-title{font-weight:700;margin:6px 0 4px;color:var(--eq-ink)}
.eq-cig-note{color:#6b4e3d;font-size:14px}
.eq-cig-note *{color:#6b4e3d !important}
.eq-tag{display:inline-block;background:#fde68a;color:#92400e;border-radius:999px;padding:2px 8px;margin-right:6px;font-size:12px;margin-top:6px}
.eq-foot{margin-top:12px;font-size:13px;color:#6b4e3d}
.eq-center{display:flex;align-items:center;justify-content:center;padding:24px;color:#6b4e3d}

/* Start button special styling */
.eq-btn-start{
  font-size:24px;
  padding:5px 20px;
}