body {
  padding-bottom: 40px; 
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.btn {
  border-radius: 50px;
}

.page-footer {
  background-color: #d4141a;
}

.footer-copyright {
  color: white;
  font-size: 13px;
}

.footer-copyright a {
  color: white;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
}

.nav-link {
  color: #d4141a;
  font-weight: 600;
}

.custom-error-height {
  height: 80vh;
}

h1.large-error-message {
  font-size: 100px;
  color: #d4141a;
}

h1.large-success-message {
  font-size: 35px;
  color: green;
}

.form-check-input {
  border-color: #d4141a;
}

.form-check-input:checked {
  background-color: #d4141a;
  border-color: #d4141a;
}

.form-check-input:focus {
  box-shadow: none;
  border-color: #d4141a;
}

.form-control:focus {
  border-color: red;
  box-shadow: none;
}

.btn.btn-outline-danger:hover {
  background-color: inherit;
  color: #d4141a;
  border-color: inherit;
}

.btn-selected {
  background-color: #d4141a;
  color: white;
}


.form-check-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid #d4141a !important;   /* crvena ivica */
  border-radius: 6px !important;          /* zaobljeni uglovi */
  width: 17px;
  height: 17px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
  background-color: #fff !important;      /* bijela pozadina dok nije označen */
}

/* Kada je čekiran */
.form-check-input:checked {
  background-color: #d4141a !important;   /* crvena pozadina */
  border-color: #d4141a !important;
}

/* Dodaj kvačicu (check mark) koristeći ::after */
.form-check-input:checked::after {
  content: "\2713"; /* Unicode za check mark (✓) - možeš koristiti i Font Awesome ili SVG ako trebaš bolji izgled */
  position: absolute;
  top: -2px;       /* Podesi poziciju da bude centrirano - testiraj */
  left: 2px;
  color: #fff;     /* Bijela boja za kontrast */
  font-size: 14px; /* Veličina - prilagodi po potrebi */
  font-weight: bold;
}

/* Hover efekat */
.form-check-input:hover {
  box-shadow: 0 0 0 0.15rem rgba(212, 20, 26, 0.4);
}

/* Opcionalno: Fokus efekat za pristupačnost */
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(212, 20, 26, 0.25);
}
}

