body {
  min-height:100vh;
  background: radial-gradient(circle at top, #fff 0%, #f2f2f2 60%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: 'Poppins', sans-serif;
}

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, Arial, sans-serif;
}



/* POZADINA STRANICE */
.vote-bg {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('bg.jpg') center / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
    font-family: 'Poppins', sans-serif;
}


.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▲\A▼";
  white-space: pre;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #999;
  line-height: 1;
  pointer-events: none; /* ⬅️ klik ide na input */
}

/* kad je dropdown otvoren (opciono) */
.select-wrapper.open::after {
  color: #ED1D33;
}


.vote-card {
  width:100%;
  max-width:420px;
  background:#fff;
  border-radius:16px;
  padding: 40px 35px 50px;
 
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  text-align:center;
  position:relative;
}

.vote-card::before {
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:6px;
  background:#d63a3a;
  border-radius:16px 16px 0 0;
}

.vote-icon {
  width:56px;
  height:56px;
  background:#fdecec;
  color:#d63a3a;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  font-size:26px;
}

.vote-footer {
  font-size: 13px;
  color: #777;
}


h1 {
  color:#c62828;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}


.subtitle {
  color:#555;
  font-size:14.5px;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 26px;
}


.label {
  display:block;
  text-align:left;
  font-size:12px;
  color:#777;
  margin-bottom:6px;
}

.custom-select {
  position:relative;
}

.custom-select input {
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #f1b6b6;
  font-size: 14px;
  font-style: normal;
}


/* DROPDOWN IDE GORE */
.dropdown {
  position: absolute;
  bottom: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,.18);
  z-index: 20;
  overflow: hidden;
}

.hidden {
  display: none !important;
}


/* SEARCH U DROPDOWNU */
.dropdown-search {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.dropdown-search input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* LISTA */
.dropdown-list {
  max-height: 260px;
  overflow-y: auto;
}

/* OPCIJE */
.option {
  padding: 10px 14px;
  cursor: pointer;
}

.option:hover {
  background: #f3c73d;
}

.option strong {
  display: block;
}

.option span {
  font-size: 12px;
  color: #555;
}


#msg {
  margin-top:20px;
  font-weight:600;
}


.status-modal {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.status-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-icon.success {
  background: #e8f8ef;
  color: #28a745;
}

.status-icon.error {
  background: #fdecea;
  color: #dc3545;
}

.status-icon.info {
  background: #eaf4ff;
  color: #0d6efd;
}

#statusTitle {
  font-weight: 600;
}
