
#naruci .border {
    box-sizing: border-box;
}


/* Dugmad u meniju – iste širine na desktopu i mobile */
.user-menu .btn {
    min-width: 120px;       /* minimalna širina */
    width: auto;            /* širina raste prema tekstu */
    display: inline-flex;   /* omogućava poravnanje */
    justify-content: center;
    text-align: center;
    border-width: 2px;
    font-weight: 600;
    margin: 4px;
    white-space: nowrap;    /* sprječava prelamanje */
}


/* Podesi stil za select dropdown */
.form-select {
  cursor: pointer; /* Poboljšava UX prilikom odabira */
}

.form-select:focus {
  outline: none;
  border-color: #007bff; /* Boja kada je odabrano */
}

select {
  -webkit-appearance: none; /* Za uklanjanje starih stilova na MacOS-u */
  -moz-appearance: none; /* Za uklanjanje starih stilova na Firefoxu */
  appearance: none; /* Za uklanjanje starih stilova na modernim browserima */
}


.logout-warning-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 9999;
}
.logout-text {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #856404;
}
.logout-btn {
  background: #ffc107;
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}
.logout-btn:hover {
  background: #e0a800;
}


#modalNacinPlacanja .modal-dialog {
  max-width: 50%; /* pola od širine ekrana */
}

/* Stiliziranje specifičnog modala sa klasom modal-odaberite-placanje */
.modal-odaberite-placanje .modal-content {
  background-color: #d9e6f2  !important;  /* Crvena pozadina */
  border-radius: 10px;  /* Zaobljeni kutovi */
  color: black;  /* Bijeli tekst za kontrast */
}

/* Opcionalno: Povećanje širine specifičnog modala */
.modal-odaberite-placanje .modal-dialog {
  max-width: 80%;  /* Povećava širinu na 80% ekrana */
}

/* Povećavanje visine modala */
.modal-odaberite-placanje .modal-content {
  max-height: 80vh;  /* Povećava visinu modala na 80% visine ekrana */
  overflow-y: auto;  /* Omogućava skrolanje ako sadržaj premaši visinu */
}

#kartice-container {
  display: flex;
  flex-direction: column;  /* Postavi kartice u vertikalni raspored */
  align-items: flex-start;  /* Lijevo poravnanje kartica */
  padding-left: 0;  /* Uklanja defaultno lijevo uvlačenje */
}

#kartice-container .kartica-item {
  margin-bottom: 10px;  /* Razmak između kartica */
}




/* Stilizacija samo za dugmadi Deregistriraj i Registriraj */
.btn-container {
  display: flex;
  justify-content: start;  /* Poravnaj dugmadi s lijeve strane */
  gap: 0.5cm;  /* Razmak od 0,5 cm samo između ova dva dugmadi */
}

/* Ako želite dodati dodatnu stilizaciju za dugmadi */
#btnDeregistrujKarticu, #btnRegistrujKarticu {
  padding: 7px 17px;
}


/* Ako je potrebno, postavi dimenzije modala */
#aktivneKarticeModal .modal-dialog {
  max-width: 600px;
  width: 100%;
  height: 600px;
}




.small-font {
  font-size: 0.8rem; /* Možeš smanjiti ovu vrijednost po želji */
}



/* Osiguraj da modal bude na vrhu stranice i ima visoki prioritet */
#aktivneKarticeModal {
  z-index: 1065 !important; /* Povećaj z-index kako bi modal bio ispred drugih elemenata */
}

/* Osiguraj da modal bude na vrhu stranice i ima visoki prioritet */
#modalNacinPlacanja {
  z-index: 1060 !important; /* Povećaj z-index kako bi modal bio ispred drugih elemenata */
}



/* Osiguraj da modal bude na vrhu stranice i ima visoki prioritet */
#modalRegistracijaKartice {
  z-index: 1060 !important; /* Povećaj z-index kako bi modal bio ispred drugih elemenata */
}

/* Ukloni pozadinu iza modala, ako želiš da bude ispred svih */
#modalRegistracijaKartice .modal-backdrop {
  z-index: 1060 !important; /* Z-index za pozadinski sloj */
  background-color: rgba(0, 0, 0, 0.5); /* Blago zatamnjenje pozadine */
}

/* Stilizacija modala za bolje prikazivanje */
#modalRegistracijaKartice .modal-dialog {
  max-width: 600px;
}


/* Stil za dugme sa crnim outline-om, ali zelenu pozadinu */
.btn-moj {
  font-size: 12px; /* Veličina fonta */
  font-weight: bold !important; /* Podebljan tekst */
  padding: 0.3rem 1rem; /* Unutarnje margine za dugme */
  border: 1px solid black; /* Zelena granica */
  background-color: red; /* Zelena pozadina */
  color: white; /* Bijela boja teksta */
  border-radius: 5px; /* Zaobljeni kutovi */
  text-align: center; /* Poravnanje teksta */
  display: inline-block; /* Omogućava centriranje */
  margin-top: 10px; /* Prostor iznad dugmeta */
  transition: all 0.3s ease; /* Glatka animacija na hover */
}

/* Hover efekat - promjena boje pozadine */
.btn-moj:hover {
  background-color: darkred; /* Tamnozelena pozadina pri hover-u */
}





/* Stil za dugme sa crnim outline-om, ali zelenu pozadinu */
.btn-kartice {
  font-size: 12px; /* Veličina fonta */
  font-weight: bold !important; /* Podebljan tekst */
  padding: 0.3rem 1rem; /* Unutarnje margine za dugme */
  border: 1px solid black; /* Zelena granica */
  background-color: green; /* Zelena pozadina */
  color: white; /* Bijela boja teksta */
  border-radius: 5px; /* Zaobljeni kutovi */
  text-align: center; /* Poravnanje teksta */
  display: inline-block; /* Omogućava centriranje */
  margin-top: 10px; /* Prostor iznad dugmeta */
  transition: all 0.3s ease; /* Glatka animacija na hover */
}

/* Hover efekat - promjena boje pozadine */
.btn-kartice:hover {
  background-color: darkgreen; /* Tamnozelena pozadina pri hover-u */
  cursor: pointer; /* Kursor pokazivača */
}

/* Centriranje kontejnera sa dugmetom */
#kartice-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centriranje dugmeta horizontalno */
  justify-content: center; /* Centriranje dugmeta vertikalno */
  text-align: center; /* Poravnanje teksta */
}








html {
  overflow-y: scroll;  /* uvijek prikaži scrollbar */
}

body.modal-open {
  padding-right: 0 !important; /* zabrani bootstrap padding hack */
}




/* Placeholder za inpute i textarea */
::placeholder {
  color: #666666 !important;
  opacity: 1;
}

/* Default (prvi) option sivi */
select option[disabled][selected] {
  color: #666666 !important;
}

/* Ako je cijeli select disabled – tekst unutra neka bude siv */
select:disabled {
  color: #666666 !important;
}

/* Ostale opcije ostaju crne kad su dostupne */
select:not(:disabled) option {
  color: #000;
}

















/* Placeholder za input i textarea */
::placeholder {
  color: #666666  !important; /* crvena */
  opacity: 1;
}

/* Placeholder-like opcija u selectu */
select:required:invalid {
  color: #666666  !important; /* crvena */
}

/* Da ostale opcije u selectu budu normalne (crne) */
option[value=""][disabled] {
  display: none;
}
option {
  color: #000;
}







.my-5 {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}


.footer-links .btn-link {
  font-size: 16px;
  font-weight: 600;      /* podebljano kao h6 */
  text-decoration: none; /* da izgleda kao tekst, ne link */
  color: grey;          /* ili boja po želji */
}

h2 {
  font-size: 20px;
  margin-top:10px;
 font-weight: bold !important;
}

h4 {
  font-size: 18px;
 font-weight: bold !important;
}

h5 {
  font-size: 16px;
 font-weight: bold !important;
}

h6 {
  font-size: 14px;
 font-weight: bold !important;
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: bold !important;

}

#mainNavbarpravna .nav-link {
  font-size: 23px;   /* za pravni */
}


#btn-profil,
#btn-paketi,
#btn-narudzbe,
#btn-istorija,
#btn-kartice,
#btn-nalozi {
  font-size: 12px; 
  font-weight: bold !important;
 border: 1px solid grey;
 transition: all 0.3s ease; /* Glatka animacija na hover */
  padding: 0.4rem 0.6rem; /* možeš i padding smanjiti da dugmad budu kompaktnija */
}

/* Glavni layout za sve stranice */

body {
  font-family: 'Segoe UI', sans-serif;
}
.cta-btn {
  background-color: #c4001d;
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 14px;
  border-radius: 8px;
}
section {
  padding: 3rem 0;
}
.feature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 0rem;
}
.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-img {
  flex: 1 1 45%;
  min-height: 250px;
  background-color: #f0f0f0;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}
.feature-text {
  flex: 1 1 45%;
}
.feature-text h3 {
  font-weight: bold;
  color: #c4001d;
  margin-bottom: 1rem;
}
footer {
  background-color: #212529;
  color: white;
  padding: 2rem 1rem;
}



html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

/* Container koji drži sadržaj stranice */
.main-content {
  flex: 1;             /* zauzmi sav prostor između headera i footera */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* opcionalno: centriraj sadržaj po vertikali */
}

/* Footer uvijek na dnu */
footer {
  margin-top: auto;
}


















.apple-toast {
  visibility: hidden;
  min-width: 260px;
  max-width: 320px;
  background: rgba(50, 50, 50, 0.88);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 16px 22px;
  font-size: 12px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.apple-toast.show {
  visibility: visible;
  opacity: 1;
}

/* Responsive */
@media (max-width: 576px) {
  .apple-toast {
    font-size: 14px;
    padding: 14px 18px;
    min-width: 220px;
  }
}






#modalSprat,
#modalStan {
  display: none !important;
}


.manji-font {
  font-size: 11px !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #212529 !important;
  line-height: 1.5;
}

/* Dodatno poravnanje i padding za select da izgleda kao input */
.form-select.manji-font {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.75rem;
  height: auto;
  background-color: #fff; /* isto kao input */
  border-color: #ced4da;  /* isto kao input */
}






.smaller-font {
  font-size: 0.85rem;
}




@media (max-width: 768px) {
  #mobile-buttons a.btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}




.small-btn {
  font-size: 12px !important;
  font-weight: bold !important;
}





#session-timer {
  font-size: 0.75rem;
  color: #dc3545; /* Bootstrap crvena */
}




#modalNarudzba {
  z-index: 1050 !important; /* default za prvi modal */
}
#modalKartica {
  z-index: 1060 !important; /* viši z-index ide iznad */
}
.modal-backdrop.show {
  z-index: 1040 !important; /* backdrop iza oba */
}








.btn-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-shadow:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}



.image-wrapper {
  position: relative;
  width: 50%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;   /* dodano */
  overflow: hidden;
  border-radius: 8px;
}



.hover-text {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;
  background: #198754;
  color: white;
  text-align: center;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  opacity: 0;
  border-radius: 12px;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.image-wrapper:hover .hover-text {
  opacity: 1;
}





.tooltip-inner {
  font-size: 13px;
  padding: 10px 14px;
  background-color: #343a40;
  color: #fff;
  max-width: 220px;
  text-align: center;
}
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #343a40;
}

/*
.package-box {
  background-color: #f8f9fa; 
  padding: 20px;
  border-radius: 10px;
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  text-align: center;
}
*/










.text-justify {
  text-align: justify;
}


.apple-btn {
  background-color: #f5f5f7;
  color: #1d1d1f;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.apple-btn:hover {
  background-color: #e5e5ea;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-buttons {
  flex-direction: column;
}

@media (min-width: 768px) {
  .payment-buttons {
    flex-direction: row;
  }

  .apple-btn {
    flex: 1;
  }
}


.text-justify p {
  text-align: justify;
}



.centriraj-div {
  max-width: 100%;       /* ili širinu po želji */
  margin-left: auto;
  margin-right: auto;
}


.col-md-6 profil-kolone{
      width: 10%;
      margin-bottom: 20px;
}


.table-responsive{
 width: 100%;
      margin-bottom: 20px;
}



.profil-stranica .table-responsive {
  overflow-x: auto;
}


<style>
  table.table td,
  table.table th,
  table.table {
    border: none !important;
  }
</style>



@media (min-width: 768px) {
    width: 100%;
  }
}



#user-info,  {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}



/*
.package-box img {
  width: 100%;
  max-width: 100px;      
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
*/

 header {
<!--    background-color: #c4001d; -->
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }





/* ============================= */
/* RESET I OSNOVNI STILOVI */
/* ============================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top:5px;
  background-color: #f8f9fa;
  color: #212529;
}



/* ============================= */
/* NASLOVI I TEKSTOVI */
/* ============================= */
h1, h2, h3, h4, h5 {
  margin-bottom: 1rem;
}

/* ============================= */
/* KONTEJNER */
/* ============================= */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0rem;
}
.container.prijava {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.container.login {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}






/* ============================= */
/* CTA DUGME */
/* ============================= */
.cta-btn {
  background-color: #c4001d;
  border: none;
  color: white;
  padding: 0.6rem 0.8rem;
  font-size: 1.0rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.cta-btn:hover {
  background-color: #a30018;
}

/* ============================= */
/* SLIDER */
/* ============================= */
.slider-wrapper {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 2px;
}

#usluge-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.icon-box {
  width: 120px;
  text-align: center;
}
.icon-box img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #fff;
}

/* ============================= */
/* SEKCIJA NARUDŽBE */
/* ============================= */
#naruci {
  background-color: #ffffff;
  padding: 5px 0;

#naruci h2 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 30px;
}
#naruci input,
#naruci select,
#naruci textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  width: 100%;
}
#naruci input:focus,
#naruci select:focus,
#naruci textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}
#naruci textarea {
  resize: vertical;
}
#naruci .cta-btn {
  background-color: #dc3545;
  color: #fff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#naruci .cta-btn:hover {
  background-color: #c82333;
}


/* ============================= */
/* SEKCIJA NARUDŽBEPRAVNALICA */
/* ============================= */
#narucipravnalica {
  background-color: rgba(248, 249, 250, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 60px 0;
}
#narucipravnalica h2 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 30px;
}
#narucipravnalica input,
#narucipravnalica select,
#narucipravnalica textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  width: 100%;
}
#narucipravnalica input:focus,
#narucipravnalica select:focus,
#narucipravnalica textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}
#narucipravnalica textarea {
  resize: vertical;
}
#narucipravnalica .cta-btn {
  background-color: #dc3545;
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#narucipravnalica .cta-btn:hover {
  background-color: #c82333;
}





/* ============================= */
/* LOGIN / REGISTRACIJA */
/* ============================= */
.container.login {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.image-section {
  flex: 1;
  background: url('img/ulazna.png') center center no-repeat;
  background-size: cover;
}

.form-section,
.form-sectionlogin {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
}

.form-section img,
.form-sectionlogin img {
  width: 150px;
  margin-bottom: 20px;
}

.form-section h2,
.form-sectionlogin h2 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

/* ============================= */
/* FORME I INPUT POLJA */
/* ============================= */

form.login-form,
form.register-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
}


/* Za širu formu */
.wide-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  width: 100%;
  max-width: 850px;
  margin: 0 auto; /* centrira formu */
}

/* Za login formu (ili drugu manju formu) */
.login-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}




form label {
  margin-bottom: 3px;
  font-weight: bold;
  color: #555;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="password"],
form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  width: 100%;
  background-color: #fff;
}
form button {
  margin-top: 15px;
  padding: 10px;
  background-color: #007bff;
  color: white;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
form button:hover {
  background-color: #0056b3;
}

/* ============================= */
/* APPLE STILOVI */
/* ============================= */
.apple-input {
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  font-size: 12px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.apple-button {
  background-color: #007bff;
  color: white;
  font-size: 12px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.apple-button:hover {
  background-color: #0056b3;
}
.apple-table {
  width: 100%;
  border-collapse: collapse;
}
.apple-table td:first-child {
  width: 30%;
  padding-right: 10px;
  vertical-align: middle;
}
.apple-table td:last-child {
  width: 70%;
}

/* ============================= */
/* PORUKE I LINKOVI */
/* ============================= */
.output-log {
  font-size: 12px;
  color: #444;
  font-family: monospace;
  margin-bottom: 15px;
  white-space: pre-line;
}
.register-link,
.forgot-password {
  margin-top: 15px;
  text-align: center;
}
.register-link a,
.forgot-password a {
  color: #007bff;
  text-decoration: none;
  font-size: 12px;
}
.register-link a:hover,
.forgot-password a:hover {
  text-decoration: underline;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer,
section.bg-dark {
  background-color: #212529;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

/* ============================= */
/* RESPONSIVNOST */
/* ============================= */
@media (max-width: 992px) {
  .icon-box {
    width: 100px;
  }
  .icon-box img {
    max-height: 100px;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .container,
  .container.login {
    flex-direction: column;
  }

  .image-section {
    height: 200px;
    width: 100%;
  }

  .form-section,
  .form-sectionlogin {
    padding: 20px;
  }

  .form-section input,
  .form-section button {
    max-width: 100%;
    font-size: 12px;
  }

  #naruci h2 {
    font-size: 20px;
  }

  #naruci .cta-btn {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .form-section h2 {
    font-size: 10px;
  }

  .form-section a {
    font-size: 16px;
  }

  form input,
  form button {
    font-size: 12px;
    padding: 8px;
  }
}



/* Samo za sekciju #zatraziuslugu */
#zatraziuslugu {
  background-color: #f8f9fa;
  padding: 60px 0;
}

#zatraziuslugu h2 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
}

#zatraziuslugu .form-control,
#zatraziuslugu .form-select,
#zatraziuslugu textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#zatraziuslugu input:focus,
#zatraziuslugu select:focus,
#zatraziuslugu textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  outline: none;
}

#zatraziuslugu textarea {
  resize: vertical;
}

#zatraziuslugu .cta-btn {
  background-color: #c4001d;
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

#zatraziuslugu .cta-btn:hover {
  background-color: #a30018;
  color: #fff;
}

/* Responsivnost */
@media (max-width: 768px) {
  #zatraziuslugu h2 {
    font-size: 24px;
  }

  #zatraziuslugu .cta-btn {
    width: 100%;
    font-size: 16px;
  }

  #zatraziuslugu .col-md-4,
  #zatraziuslugu .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
#zatraziuslugu input,
#zatraziuslugu select,
#zatraziuslugu textarea {
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
}

input:disabled {
  background-color: #e9ecef !important;
  cursor: not-allowed !important;
  opacity: 1 !important; /* Bootstrap često postavi opacity: 0.65 za disabled */
}


.logout-warning-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 20px 25px;
  width: 280px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.logout-text {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.logout-btn {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.logout-btn:hover {
  background: #c62836;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
