/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap'); */
@font-face {
  font-family: 'USN';
  src: url('fonts/AirborneIiPilot-243K.ttf') format('truetype');
}

@font-face {
  font-family: 'NEO';
  src: url('fonts/teleneo-medium.otf') format('opentype');
}



:root {

  --color-dark: #212121;
  --color-signal: #f9d73f;
  --color-background: var(--color-light);
  --color-text: var(--color-dark);
  --color-accent: var(--color-signal);
  --size-bezel: .5rem;
  --size-radius: 4px;

  color: var(--color-text);
  background: var(--color-background);


  outline: none;

}

#checkin {
  display: none;
}



.input {
  position: relative;
  font-family: USN;

}

.input__label {
  /* font-family: USAF_text; */
  font-size: 80%;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  padding: calc(var(--size-bezel) * 0.75) calc(var(--size-bezel) * .5);
  margin: calc(var(--size-bezel) * 0.75 + 3px) calc(var(--size-bezel) * .10);
  white-space: nowrap;
  transform: translate(0, 0);
  transform-origin: 0 0;
  background: var(--color-background);
  color: gray;
  transition: transform 120ms ease-in;
  font-weight: bold;
  line-height: 1.2;
  border: 0;
  outline: none;
  cursor: pointer;

}


.compact-lines p { margin: 0.1em 0; }


.input__label:hover {
  color: #f9d73f;
}


.input__field {
  /* box-sizing: border-box; */
  display: block;
  width: 125px;
  border: 0;
  padding: calc(var(--size-bezel) * 1.5) var(--size-bezel);
  color: #ddd;
  background: transparent;
  border-radius: var(--size-radius);
  outline: none;
  font-size: 80%;

}

.input__field:not(:-moz-placeholder-shown)+.input__label {
  transform: translate(0.25rem, -65%) scale(0.8);
  /* color: var(--color-accent); */

}

.input__field:not(:-ms-input-placeholder)+.input__label {
  transform: translate(0.25rem, -65%) scale(0.8);
  /* color: var(--color-accent); */

}

.input__field:focus+.input__label,
.input__field:not(:placeholder-shown)+.input__label {
  transform: translate(0.25rem, -65%) scale(0.8);
}

.input__field:focus+.input__label {
  color: var(--color-accent);
}




.header {
  background-image: url("images/blueCarpet.jpg");
  background-repeat: repeat; /* Repeat the image both horizontally and vertically */
  background-size: 800px 200px; /* Set the image size for repeating */
  padding-top: 20px;
  color: #ffffff;
  text-align: center;
  font-size: 90px;
  font-weight: bold;
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.2s;
  z-index: 10;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.progress-container {
  width: 100%;
  height: 2px;
  background: rgb(255, 255, 255);
}

/* The progress bar (scroll indicator) */
.progress-bar {
  margin-top: 20px;
  height: 2px;

  background: #f9d73f;
  width: 0%;
}






html {
  scroll-behavior: smooth;
  background-color: #000; /* Čierne pozadie pod mapou */
}

/* custom select textu */

::-moz-selection {
  /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: black;
  background: #f9d73f;
}

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* custom toolbar */

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f9d73f;
}



mark.colored {
  color: #f9d73f;
  background: none;
}

mark.gray {
  color: #808080;
  background: none;

}

span {

  z-index: 9;
}

* {
  font-family: 'NEO', sans-serif;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  /* font-family: 'Oswald', sans-serif; */

}

li {
  padding-left: 40px;
  font-size: 90%;
}


.squadron {
  border: none; 
  background: transparent; 
  color: white; 
  pointer-events: none; 
  display: flex;
  transition: color 0.3s ease;
  resize: none;
}


p.main {
  font-size: 120%;
}


p.center {
  font-size: 100%;
  text-align: center;
}


.board {
  /* background-color: #0f867f; */
  width: 350px;
  font-size: 80%;
  text-align: left;
  padding-left: 20px;
  /* border-left: 2px solid rgb(99, 99, 99); */
  color: lightgray
}



.board b {
  color: white;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}



body {
  /* tvoje pôvodné štýly */
  color: #ddd;
  background-color: transparent; /* Zmenené na transparent, aby bolo vidno mapu */
  background-position: center;
  font-family: USN;

  /* nové pre slideshow */
  position: relative;        /* aby pseudo‑element zdedil kontext */
  /* overflow: hidden; */
}









a {
  color: blue;
  text-decoration: none;
}


@media only screen and (max-width: 900px) {
}

@media only screen and (min-width: 902px) {
}




.text {
  display: flex;
  justify-content: right;
}

.text p {
  font-family: USN;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  border-radius: 10px;
  letter-spacing: 2px;
  transition: 0.2s;
}

.text p:hover {
  letter-spacing: 6px;
  color: #E20A74;
}




.frames {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 40%;
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.formation {

  padding: 0px;
  width: 100%;
  /* background-color: #0f867f; */
  border-color: #0f867f;
  border: 3px;
  border-radius: 20px;
}

.formation h2 {
  color: #f9d73f;
  font-size: 100%;
  text-transform: uppercase;
}



#map-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Hneď za obsahom */
    opacity: 1; /* Plná viditeľnosť */
    pointer-events: none;
    background: #222;
    filter: sepia(100%) hue-rotate(190deg) saturate(300%) brightness(70%);
}


.nadpis {

  /* justify-content: center; */
  /* align-items: center; */
  margin: 10px;
  z-index: 0;
  text-align: center;
  /* background-color: #00ff2a; */
}

.nadpis img {
  max-width: 800px;
  height: auto;
}

.nadpis h1 {
  font-size: 3em;
  text-transform: uppercase;

}


.nadpis label {
  color: gray;
}




.overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  /* background-color: rgba(0,0,0,.6); */
  backdrop-filter: blur(20px);
  /* mix-blend-mode: overlay; */
}





.container {
  /* font-weight: bold; */
  margin: auto;
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  /* padding: 10px; */
  z-index: 1;
  font-size: 1.2em;
  
}

.container h4 {
  /* padding-top: 100px; */
  display: flex;
  justify-content: center;
  font-size: 1em;
}


.slidy {
  /* display: none; */
  display: flex;
  /* align-items: flex-start; */
  max-width: 900px;
  margin: 50px 0;
  color: black;
  /* position: relative; */

}




.slidyContentTransparent {

  width: 100%;
  /* background-color: white; */
  border-radius: 10px;
  line-height: 110%;
  /* box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2); */
  color: rgb(255, 255, 255);
  /* padding-left: 20px; */
  /* padding-right: 20px; */
  padding-top: 0px;
  padding-bottom: 0px;
  /* animation: bounce2 2s ease infinite; */

}

td {
  text-align: center;
  padding: 10px;
  font-size: 80%;

  border-bottom: 1px solid #d0d2d1;
}

 a {
  color: #f9d73f;
 }
  a:hover {
  color: #ffeb93;}

/* menu */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  /* background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px); */
  /* background-image: url(images/blueCarpet.jpg); */
  /* background-color: #111; */
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 100px;
  z-index: -1;
  overflow-y: hidden;
  overflow-x: hidden;
}

.sidenavBG {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  /* background-image: url(images/blueCarpet.jpg); */
  /* background-color: #111; */
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 100px;
  z-index: 2;
}

.sidenav a {
  /* margin-top: 10px; */
  margin: 15px 50px 0px 30px;
  text-decoration: none;
  font-size: 18px;
  color: #f9d73f;
  opacity: 0.7;
  display: block;
  transition: 0.3s;
  /* z-index: 1; */
}

/* .sidenav li a {
  padding: 12px 5px 2px 2px;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.5;
  position: fixed;
  color: #f9d73f;
  display: block;

} */

.sidenav a:hover {
  color: #ffeb93;
 transition: 0.3s !important;
  margin-left: 30px !important;
  opacity: 1 !important;
}

a.odrazka {
  margin: 0px 100px 0px 40px !important;
  font-family: USN;
  font-size: 14px;
  opacity: 0.5;
  color: #f9d73f;
 


}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sub-menu {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}


/* @media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} */
@media screen and (orientation: portrait) {
  .sidenav {
    padding-top: 120px;
  }

  .sidenav li a {
    font-size: 25px;
  }

  .sidenav a {
    font-size: 30px;
  }
}

/* animacie */

.bounce2 {
  animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}


/* Modals
----------------------------------------------*/


[data-ml-modal] {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  width: 0;
  height: 0;
  opacity: 0;
}

[data-ml-modal]:target {
  width: auto;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

[data-ml-modal]:target .modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

[data-ml-modal] .modal-dialog {
  border-radius: 6px;
  /* box-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a; */
  position: relative;
  width: 90%;
  max-width: 400px;
  max-height: 70%;
  margin: 40% auto;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
}

.modal-dialog-lg {
  max-width: 400px !important;
}


[data-ml-modal] .modal-content {
  background: #000000;
  padding: 23px 27px;
  color: #00ff2a;
  font-size: 130%;
  font-family: 'NEO', sans-serif;
  text-align: center;
  text-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a;

}

[data-ml-modal] p:first-child,
[data-ml-modal] p:last-child {
  margin: 0;
}

@media (max-width:767px) {
  [data-ml-modal] .modal-dialog {
    margin: 20% auto;
  }
}

/* End Modals ------------------------------*/







/* animovane tlacidlo  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}


button {
  width: 150px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: #000000;
  border: none;
  border-radius: 5px;
  /* box-shadow: 1px 1px 3px rgba(0,0,0,0.15); */
  background: #000000;
  z-index: 15;
}



button,
button span {
  transition: 200ms;
}

button .text {
  transform: translateX(10px);
  color: #f9d73f;
  font-weight: bold;
}

button .icon {
  position: absolute;
  border-left: 2px solid #f9d73f;
  transform: translateX(100px);
  /* background-image: url(images/menu.png);
  background-repeat: no-repeat;
  background-position: center; */
  height: 40px;
  width: 50px;
  /* margin: -5px; */
  display: flex;
  align-items: center;
  justify-content: center;
}


button:hover .text {
  color: transparent;
}

button:hover .icon {
  width: 150px;
  border-left: none;
  transform: translateX(0);
}

button:focus {
  outline: none;
}





.separator {
  font-family: USN;
  display: flex;
  align-items: center;
  text-align: center;
  color: rgb(99, 99, 99);
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgb(99, 99, 99);
}

.separator:not(:empty)::before {
  margin-right: 2em;
  margin-left: 2em;
}

.separator:not(:empty)::after {
  margin-left: 2em;
  margin-right: 2em;
}


.rolling {
  font-size: 120%;
  color: #E20A74;
  font-weight: bold;
  /* text-transform: uppercase; */
  /* text-align: center; */
  /* padding: 5px; */
  transition: 0.5s;
  cursor: pointer;
}

.rolling:hover {
  /* letter-spacing: 2px; */
  transition: 0.5s;
}



/* rozbalovacie slidy */
.accordion {
  border: 0;
  border-top: 1px solid #636363; 
  /* border-radius: 8px; */
  width: 900px;
  font-family: USN;
  margin-bottom: 15px;
}

/* HLAVIČKA */
.accordion-header {
  display: flex;
  background: transparent;
  justify-content: space-between; /* ľavý text naľavo, pravý na pravo */
            /* zvislo vycentrované */
  color: #ddd;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  height: 30px;        /* pevná výška */
  line-height: 50px;   /* vycentruje text vertikálne */
  padding: 0px;     /* odstráň vertical padding, nech to nesčítava výšku */
}

.accordion-header:hover {
  color: #f9d73f;
}

.accordion-header .right-text {
  font-size: 0.9em; /* môžeš doladiť */
  color: #f9d73f;
}

/* OBSAH accordionu */
.accordion-content {
  max-height: 0;
  font-size: 80%;
  overflow: hidden;
  padding-top: 10px;
  transition: max-height 0.3s ease;
  background: transparent; /* <<< dôležité: tabs nemajú podklad */
}

.accordion.open .accordion-content {
  max-height: 1000px; /* alebo nechám JS pre auto-height */
  min-height: 600px; /* alebo nechám JS pre auto-height */
}

/* LAYOUT: tabs vľavo, obsah vpravo */
.tabs-container {
  display: flex;
  height: 100%;
}

/* ĽAVÁ ČASŤ – Tabs */
.tabs {
  display: flex;
  flex-direction: column;
  width: 100px;
  background: transparent; /* žiadne pozadie pod tabmi */
}

.tab {
  padding: 2px;
  color: #808080;
  font-size: 80%;
  cursor: pointer;
  background: transparent; /* neaktívny tab je priesvitný */
  transition: background 0.2s, color 0.2s;
  padding-left: 0px;
  text-align: left;
}

.tab:hover {
  color: #f9d73f;
}

.tab-link {
  padding: 2px;
  color: #808080;
  font-size: 80%;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}

.tab-link:hover {
  color: #f9d73f;
}

.tab-link.active {
  color: #f9d73f;
}

/* Aktívny tab má rovnaké pozadie ako obsah */
.tab.active {
  background: transparent;
  color: #f9d73f;
}

/* PRAVÁ ČASŤ – Obsah */
.tab-content-area {
  flex: 1;
  padding: 12px;
  background: transparent; /* pozadie obsahu */
}

/* Skryté / zobrazené panely */
.tab-content {
  display: none;
}
.tab-content img { vertical-align: top; }

.tab-content.active {
  display: block;
  
}

/* aby sa dalo absolútne umiestňovať v rámci tabu */
.tab-content { position: relative; }
.tab-canvas { position: relative; display: inline-block; }

/* žltý text na čiernom, presne do „červeného“ obdĺžnika */
.info-box {
  position: absolute;
  /* ----- NASTAV TÚTO POZÍCIU PODĽA OBRÁZKA ----- */
  left: 0px;     /* doladíš podľa potreby (px alebo %) */
  top: 100px;      /* doladíš podľa potreby (px alebo %) */
  /* --------------------------------------------- */
  width: 800px;    /* voliteľné – priestor pre text */
  min-height: 160px;

  background: transparent;
  color: #ddd;
  border: 0px solid #f9d73f;
  padding: 12px;
  line-height: 1.3;
  /* pointer-events: none; */ /* neblokuje kliky na obrázky; zruš ak chceš klikateľný box */
}


/* Chatbot Styles */
.chatbot-window {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-height: 100px;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0);
  /* backdrop-filter: blur(10px); */
  border: 0px solid var(--color-signal);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  font-family: USAF_text;
}
.chatbot-header {
  padding: 15px;
  background: var(--color-dark);
  border-bottom: 0px solid var(--color-signal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-signal);
  font-family: USN;
}

.chatbot-messages {
  flex: 1;
  padding: 15px;
  color: #eee;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot-input-area {
  padding: 15px;
  display: flex;
  gap: 10px;
  border-top: 1px solid #333;
}

.chatbot-input {
  flex: 1;
  background: transparent;
  border: 0px solid #444;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  outline: none;
}

.chatbot-send {
  background: var(--color-signal);
  color: #000;
  border: none;
  padding: 0 15px;
  border-radius: 4px;
  cursor: pointer;
  font-family: USN;
  font-weight: bold;
}

.message {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1.4;
}

.message.user {
  align-self: flex-end;
  background: #ffffff;
  color: #111111;
}

.message.bot {
  align-self: flex-start;
  background: transparent;
  border: 0px solid var(--color-signal);
  color: white;
}

/* Grayscale hover effect for images */
.grayscale-hover {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.grayscale-hover:hover {
  filter: grayscale(0%);
}


.kneeboard_Layout {
  width: 768px;
  height: 1152px;
  text-align: left;
  background-color: #ffffff;
  background-image: url('images/kneeboards/kneeboardBG.png');
  background-size: cover;
  color: #363636 !important;
  padding: 50px;
  display: block;
  transform: scale(0.8);
  transform-origin: top left;
  position: relative;
}

.download-hint {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000000;
  color: #f9d73f;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-family: USN;
}

.kneeboard_Layout:hover .download-hint {
  opacity: 1;
}

.kneeboard_Layout p {
 margin-bottom: 10px;
 font-size: 120%;
}
.kneeboard_Layout H2 {
 margin-bottom: 10px;
}

.kneeboard-input {
  position: absolute;
  transform: translate(-50%, -50%);
  border: none;
  color: #363636;
  background: transparent;
  font-family: inherit;
  z-index: 1;
  resize: none;
  text-align: center;
  font-size: 120%;
  font-weight: bold;
  overflow: hidden;
  line-height: 1.5em;
  background-image: linear-gradient(transparent calc(100% - 2px), #363636 calc(100% - 2px));
  background-size: 100% 1.5em;
  background-repeat: no-repeat;
  padding: 0;
}

.kneeboard-input:focus {
  outline: 2px solid #f9d73f !important;
  border-radius: 2px;
}

.kneeboard_Layout.lines-hidden .kneeboard-input {
  background-image: none !important;
  border: none !important;
}

.kneeboard-controls {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.kneeboard_Layout:hover .kneeboard-controls {
  opacity: 1;
}

.kneeboard-btn {
  background-color: #000000;
  color: #f9d73f;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  font-family: USN;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: auto;
  height: auto;
  margin-right: 1px;
}

.kneeboard-btn:hover {
  background-color: #f9d73f;
  color: #000000;
}

.kneeboard-presets {
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  width: 150px;
}

.preset-btn {
  padding: 2px;
  color: #808080;
  font-size: 100%;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}

/* Úprava veľkostí výhradne pre položky vnútri ADD rozbaľovacieho menu */
.add-dropdown .preset-btn {
  padding: 5px;
  font-size: 90%;
}

.preset-btn:hover {
  color: #f9d73f;
}

select option {
  background-color: black;
  color: #f9d73f;
}

/* Custom Select Styles */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  max-width: 200px;
  margin-bottom: 15px;
  font-family: 'USN', sans-serif;
}
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}
.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  font-family: 'USN', sans-serif;
  font-size: inherit;
  font-weight: bold;
  color: #ddd;
  background: transparent;
  cursor: pointer;
  border: 1px solid #f9d73f;
}

/* Zladenie vzhľadu pick-listu v bočnom menu s ostatnými odkazmi */
.sidenav .custom-select__trigger {
  opacity: 0.7;
  transition: 0.3s;
}
.sidenav .custom-select__trigger:hover {
  opacity: 1;
}
.sidenav .custom-select__trigger:hover .custom-select-input {
  color: #ffeb93 !important;
}
.sidenav .custom-select__trigger:hover .arrow {
  border-top-color: #ffeb93 !important;
}

.custom-select__trigger:hover {
  color: #f9d73f;
}
.custom-select__trigger .arrow {
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #f9d73f;
  margin-left: 10px;
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  /* border: 1px solid #f9d73f; */
  background: #212121;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  font-family: 'USN', sans-serif;
}
.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.custom-option {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: 16px;
  font-family: 'USN', sans-serif;
  font-weight: bold;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s;
}
.custom-option:hover {
  background-color: #f9d73f;
  color: #000; /* Čierny text na žltom pozadí pri hoveri */
}
.custom-option.selected {
  color: #ffffff;
  background-color: #333;
}

.custom-select-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #ddd;
  font-family: 'USN', sans-serif;
  font-size: inherit;
  font-weight: bold;
  outline: none;
}
