  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    td.between {
      font-size: 16px;
      font-weight: 700;
    }

    #map {
      width: 100%;
      height: 600px;
  }

  body.body-bgr {
    position: relative;
    min-height: 100vh;
  }

  body.body-bgr::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("images/bgr2.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-color: #ffffff;
      opacity: 0.6;
      z-index: -1;
  }

  .btn-pdf {
    padding: 0;
    border: none;
    background: transparent;
    margin: 0 0.5vw;
  }

  img.logo-image:hover {
    opacity: 0.85;
  }

  .btn-arrow {
    padding: 0;
    border: none;
    background: transparent;
    margin: 0 0.1vw;
  }

  .svg-icon {
    width: 1.2vw; 
    height: 2.5vh;
    fill: rgb(15, 47, 72); 
    transition: fill 0.3s ease, transform 0.2s; 
    cursor: pointer;
  }
  
  .svg-icon:hover {
    fill: rgb(15, 47, 72); 
    transform: scale(1.08);
  }

  /* Ikona */
.show-image {
  width: 1vw; 
  height: 2vh;
  transition: fill 0.3s ease, transform 0.2s;
  margin-left: 0.2vw;
  display: inline-block;
  vertical-align: middle; /* Zarovnanie ikony k textu */
}

/* Hover efekt na ikone */
.show-image:hover {
  transform: scale(1.08);
}

/* Náhľad obrázka */
.image-preview {
  display: none;
  position: absolute;
  bottom: 100%; /* Upravilo sa, aby bol správne umiestnený */
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: rgb(101, 189, 114);
  padding: 3px;
  z-index: 500;
  margin-left: 200px;
}

.show-image:hover + .image-preview {
    display: block;
}

.item-photo {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  text-align: left;
}

  img.logo-image {
    width: 6%; 
    position: fixed;
    left: 2%;
    top: 30px;
    transition: transform 0.5s,
  }

  img.logo {
    position: fixed;
    left: 2%;
    top: 45px;
    width: 6%;
  }

  .installer-button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin: 2px 0;
    transition: background-color 0.3s ease;
  }

  .installer-button:hover {
      opacity: 0.8;
  }

  .installer-button:focus {
      outline: none;
  }

  .copy-icon-container {
    display: inline-block;
    cursor: pointer;
    margin-top: 0.4vh;
  }

  .copy-icon {
      filter: brightness(0) invert(0); /* Čierna farba */
      transition: transform 0.3s ease, filter 0.3s ease;
  }

  .copy-icon-container:hover .copy-icon {
      filter: brightness(0) invert(32%) sepia(94%) saturate(569%) hue-rotate(85deg) brightness(90%) contrast(100%);
      transform: scale(1.1);
  }

  .year_table2 td {
    font-size: 1.6vh;
}

.select-status2 {
    font-size: 1.5vh !important;
    border: 2px solid rgb(101, 189, 114) !important;
}

table.left-side-menu2 {
    width: auto;
}

table.left-side-menu2 td {
    color: white;
    font-size: 1.6vh;
    padding: 0.5vh 0.5vw;
}

.filter-input2 {
    width: 8vw;
    padding: 0.2vh 0.2vw;
    border: 2px solid rgb(101, 189, 114, 0.5);
    border-radius: 0.5vh; 
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); 
    transition: border-color 0.3s;
    height: 3vh;
}

.filter-input2:focus {
    border-color: rgb(101, 189, 114);
    outline: none; 
}

.modal-overlay2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal box */
.modal-content2 {
    background: white;
    max-width: 60vw;
    width: auto;
    padding: 5vh 5vw;
    border-radius: 1vh;
    text-align: center;
    position: relative;
    border: 3px solid rgba(15, 47, 72);
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontálne centrovanie */
    justify-content: center; /* Vertikálne centrovanie (ak treba) */
}

/* Zatváracie tlačidlo */
.close-button2 {
    position: absolute;
    top: 1vh;
    right: 0.8vw;
    font-size: 2.5vh;
    cursor: pointer;
}

  table.report-bills {
    background-color: rgb(15, 47, 72);
    border-radius: 1vh;
    padding: 0.5vh 0.5vw;
    color: white;
    border-collapse: collapse;
    border-spacing: 0;
  }

  table.report-bills td, table.report-bills th {
    border: 2px solid black;
    padding: 0.5vh 0.5vw;
  }

  div.report-bills {
    background-color: white;
    border-radius: 0.5vh;
  }

  .parent-bill.report-bills:focus-within {
    background-color: rgba(255, 255, 255, 0.7); 
    transition: background-color 0.3s ease-in-out;
  }

  .edit-table {
    width: 100%; 
    border-collapse: collapse;
    margin-bottom: 2vh;
  }
  
  .edit-table td {
    padding: 10px 15px;
    border: 1px solid #ccc; 
    vertical-align: middle;
  }
  
  .edit-table td.standard-profil {
    background-color: rgba(15, 47, 72, 0.1); 
    font-weight: bold;
  }
  
  .edit-table input.myInput {
    width: 100%;
    padding: 8px; 
    border: 1px solid #ccc;
    border-radius: 4px; 
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
  }
  
  .edit-table input.myInput:focus {
    border-color: rgb(15, 47, 72); 
    outline: none; 
  }
  
  .edit-table textarea.myTextarea {
    width: 100%; 
    padding: 8px; 
    border: 1px solid #ccc; 
    border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
    min-height: 80px;
    resize: vertical;
    font-family: inherit; 
    resize: none;
  }
  
  .edit-table textarea.myTextarea:focus {
    border-color: rgb(15, 47, 72);
    outline: none;
  }
  
  
  .edit-table .textbox {
    position: relative;
  }


  .small-svg {
    height: 2.5vh;
    transition: transform 0.3s;
    cursor: pointer;
  }

  .small-svg:hover {
    transform: scale(1.07);
  }


  .modal-overlay3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal box */
.modal-content3 {
    background: white;
    max-width: 60vw;
    width: auto;
    padding: 5vh 5vw;
    border-radius: 1vh;
    text-align: center;
    position: relative;
    border: 3px solid rgba(15, 47, 72);
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontálne centrovanie */
    justify-content: center; /* Vertikálne centrovanie (ak treba) */
}

/* Zatváracie tlačidlo */
.close-button3 {
    position: absolute;
    top: 1vh;
    right: 0.8vw;
    font-size: 2.5vh;
    cursor: pointer;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                 Pagination                                                  */
/*-------------------------------------------------------------------------------------------------------------*/

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
    margin: 3vh 0;
    flex-wrap: wrap;
}

.pagination-link {
    font-size: 1.5vh;
    font-weight: bold;
    color: rgb(15, 47, 72);
    border: 2px solid rgb(15, 47, 72);
    background-color: white;
    border-radius: 6px;
    padding: 0.5vh 0.5vw;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pagination-link:hover {
    background-color: rgb(101, 189, 114);
    color: white;
}

.pagination-current, .pagination-arrow {
    background-color: rgb(15, 47, 72);
    color: white;
    pointer-events: none;
}

.pagination-arrow {
  cursor: pointer;
  pointer-events: initial;
  border: 2px solid rgb(15, 47, 72);
}

.pagination-dots {
    color: rgb(101, 189, 114);
    font-weight: bold;
    padding: 0 0.5vw;
    font-size: 1.5vh;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                Transactions                                                 */
/*-------------------------------------------------------------------------------------------------------------*/

button.transaction {
  width: auto;
  font-size: 1.6vh;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-add {
  background-color: green;
  color: white;
}

.btn-subtract {
  background-color: rgb(200, 0, 0);
  color: white;
}

div.transaction {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}

table.transaction {
  width: 50%;
  background-color: rgb(15, 47, 72);
  color: white;
  border-radius: 2vh;
}

table.transaction td, table.transaction tr, table.transaction th{
  color: white;
  padding: 1vh;
  font-size: 1.5vh;
}


/*-------------------------------------------------------------------------------------------------------------*/
/*                                                  Language                                                   */
/*-------------------------------------------------------------------------------------------------------------*/

img.language {
  width: 40px;
}

button.language {
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                            Vehicles - Warehouse                                             */
/*-------------------------------------------------------------------------------------------------------------*/


table.table-select-vehicle td {
  padding: 0.5vh 0.5vw;
}

table.table-select-vehicle div {
  height: 8vh;
  border-radius: 4vh;
  border: 3px solid rgb(101, 189, 114);
  background-color: rgb(15, 47, 72);
  width: 100%;
  display: flex;
  align-items: center; /* Vertikálne zarovnanie */
  justify-content: space-between; /* Posunie <p> na koniec */
  gap: 2vw;
  padding: 1vh 4vw 1vh 1vw;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

table.table-select-vehicle p {
  color: white;
  font-size: 1.8vh;
  font-weight: bold;
  margin: 0;
  text-align: right; /* Text zarovnaný doprava */
}

table.table-select-vehicle a {
  text-decoration: none;
}

table.table-select-vehicle div:hover {
  transform: scale(1.05);
  background-color: rgb(101, 189, 114); 
}

table.table-select-vehicle img.warehouse-car {
  height: 100%; /* Aby sa prispôsobil výške rodiča */
  width: auto; /* Zachová pomer strán */
  max-width: 40%; /* Aby nebol príliš široký */
  object-fit: contain; /* Zachová celý obrázok v rámci dostupného priestoru */
}






/*-------------------------------------------------------------------------------------------------------------*/
/*                                                 Signature                                                   */
/*-------------------------------------------------------------------------------------------------------------*/

.signature-box {
  border: 1px solid #000;
  width: 16vw;
  height: 14vh;
  margin-bottom: 2vh;
  position: relative;
}



/*-------------------------------------------------------------------------------------------------------------*/
/*                                                    Stats                                                    */
/*-------------------------------------------------------------------------------------------------------------*/


table.stats td{
  padding: 15px 5px 15px 5px;
}

table.stats th {
  position: sticky;
  top: 40px; /* Fix 40px od vrchu */
  z-index: 1; /* Zabezpečí, že hlavička sa zobrazí nad obsahom */
  background-color: white; /* Pridaj pozadie, aby bola hlavička čitateľná */
  padding: 10px 5px;
  font: bold 22px/1.4 'Open Sans', arial, sans-serif;
  color: rgb(15, 47, 72);
  text-align: center;
}

div.stats-dash {
  background-color: rgb(15, 47, 72);
  width: 100%;
  height: 100%;
  transition: background-image 1.3s ease;
}

div.stats-dash-total {
  background-image: linear-gradient(135deg, rgb(15, 47, 72) 15%, rgb(101, 189, 114) 75%);
}

div.stats-dash h3 {
  font: 18px 'Open Sans', arial, sans-serif;
  color: rgb(101, 189, 114);
  padding: 10px 10px 0px 10px;
  transition: color 0.8s ease;
}

div.stats-dash h4 {
  font: bold 28px/1.4 'Open Sans', arial, sans-serif;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 0px 0px 30px 0px;
  transition: color 0.8s ease;
}

div.stats-dash:hover h3 {
  color: rgb(255, 255, 255);
}

div.stats-dash:hover h4 {
  color: rgb(15, 47, 72);
}

div.stats-dash:hover {
  background-image: linear-gradient(135deg, rgb(101, 189, 114) 10%, rgb(15, 47, 72) 85%);
}

div.height-vh {
  height: 10.5vh;
}

iframe.system-pdf {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  width: 80%;
  height: 90vh;
}



/*-------------------------------------------------------------------------------------------------------------*/
/*                                          Upload - drag and drop                                             */
/*-------------------------------------------------------------------------------------------------------------*/


.upload-area {
  width: 100%;
  height: 100%;
  border: 2px dashed #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ccc;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  padding: 10px;
}

.upload-area.dragging {
  border-color: #000;
  color: #000;
}

.upload-area input[type="file"] {
  display: none;
}

#file-list {
  margin-top: 10px;
  width: 100%;
  text-align: left;
}

.file-item {
  background-color: #f0f0f0;
  margin: 5px 0;
  padding: 5px;
  border-radius: 5px;
}


/*-------------------------------------------------------------------------------------------------------------*/
/*                                             Edit reclamation                                                */
/*-------------------------------------------------------------------------------------------------------------*/

  .buttons {
    position: absolute;
    top: 83%;
    height: 16%;
    width: 96%;
    display: flex;
    align-items: center;
}

.buttons2 {
  position: absolute;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.reclamation-left {
    width: 35%; 
    height: 100%; 
    border-right: 2px solid rgb(15, 47, 72); 
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reclamation-right {
  left: 35%;
  width: 65%; 
  height: 100%; 
  border-right: 2px solid rgb(15, 47, 72); 
  position: fixed;
  display: flex;
  justify-content: center;
}

.centered-header {
  position: fixed;
  top: 5%; /* Vertikálna pozícia */
  left: 50%; /* Horizontálna pozícia (na stred) */
  transform: translateX(-50%); /* Posunie prvok späť o polovicu jeho šírky */
  text-decoration: underline;
  margin: 0; /* Odstráni predvolené okraje */
}

.recl-area {
  width: 50%;
  position: absolute;
  top: 20%;
  left: 10%;
  height: 25%;
}

.recl-select {
  position: absolute;
  top: 47%;
  left: 10%;
  display: flex;
}

.container-recl {
  position: relative;
  width: 100%;
  height: 100%;
}

.reclamation-names {
  position: absolute;
  width: 100%;
  height: 19%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid rgb(15, 47, 72);
}

.reclamation-names table {
  position: relative;
  top: 50px;
  left: 25%;
  height: 60%;
  max-width: 70%;
}


.photo-gallery-container {
  position: absolute;
  width: 98%;
  left: 1%;
  height: 20%;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  top: 19%;
  border-bottom: 2px solid rgb(15, 47, 72);
}

.box-reclamation {
  flex: 0 0 15%; /* Fixná šírka boxu 15% */
  height: 98%;
  margin: 0.5%; /* Nastavenie medzery medzi elementmi */
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reclamation-img {
  width: 100%;
  height: 98%;
  object-fit: cover; /* Zabezpečí, že obrázok vyplní kontajner bez skreslenia */
  display: block;
}

.photo-gallery {
  border-collapse: separate;
  border-spacing: 2%; /* Small gaps between cells */
  height: 100%; /* Ensure table fits within the container height */
  table-layout: fixed; /* Ensure fixed table layout */
  width: max-content; /* Ensure table takes only as much width as it needs */
}

.photo-item {
  width: 20%; /* Fixed width of 20% of the container */
  position: relative; /* For positioning the trash icon */
  box-sizing: border-box; /* Ensure padding and borders are included in width and height */
  height: 100%; 
}

.delete-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.delete-btn img {
  width: 25px; /* Size of the trash icon */
  height: 25px;
}

.pdf-gallery {
  position: absolute;
  top: 61%;
  width: 100%;
  height: 21%;
  display: flex;
  gap: 4.5%;
  padding: 2%;
  border-bottom: 2px solid rgb(15, 47, 72);
}

.pdf-item {
  position: relative;
  width: 30%;
  height: 100%;
}

.pdf-thumb {
  width: 100%;
  height: 100%;
}

.delete-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.trash-icon, .eye-icon {
  width: 25px;
  height: 25px;
}

.arrow-icon {
  width: 25px;
  height: 25px;
}

.arrow-btn {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 5px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
}


.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    display: none;
    z-index: 1000;
}


.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-buttons {
  display: flex;
  gap: 10%;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal-btn {
  padding: 10px 20px;
  cursor: pointer;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                    Modal                                                    */
/*-------------------------------------------------------------------------------------------------------------*/

.modal2 {
  display: none; 
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4); 
}

.modal-content2 {
  background: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: auto;              /* Auto width podľa obsahu */
  max-width: 90vw;          /* Obmedzenie, aby nepretieklo */
  position: absolute;       /* Pre správne pozicionovanie v rámci modalu */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  /* Vycentrovanie modalu na stred */
  font-size: 18px;
}



/* Button Container */
.modal-buttons2 {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
}

.modal-buttons2 {
margin: 10px;
padding: 10px 20px;
border: none;
cursor: pointer;
}

.btn2 {
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-confirm {
  background-color: red;
  color: white;
}

.btn-cancel {
  background-color: gray;
  color: white;
}

.btn-cancel:hover {
  background: #444b50;
}

.close-btn2 {
  position: absolute;
  top: 1vh;
  right: 0.5vw;
  font-size: 2vh;
  color: black;
  cursor: pointer;
  z-index: 1010;
}


.lightbox, .lightbox-pdf {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-content, .lightbox-content-pdf {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: block;
}

.lightbox-content-pdf {
  max-height: 90%;
}

.prev, .next, .prev-pdf, .next-pdf {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  user-select: none;
  transform: translateY(-50%);
}

.prev, .prev-pdf {
  left: 10px;
}

.next, .next-pdf {
  right: 10px;
}

.close, .close-pdf {
  position: absolute;
  top: 45px;
  right: 20px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}


/*-------------------------------------------------------------------------------------------------------------*/
/*                                             Edit reclamation FA                                             */
/*-------------------------------------------------------------------------------------------------------------*/

.pdf-gallery2 {
  position: absolute;
  top: 16%;
  width: 100%;
  height: 66%;
  display: block;
  gap: 4.5%;
  padding: 2%;
  border-bottom: 2px solid rgb(15, 47, 72);
}

.pdf-item2 {
  position: relative;
  width: 93%;
  height: 24%;
  padding: 5px;
}

.view-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: 0px;
  padding: 0;
}

.pdf-right {
  position: absolute;
  top: 17%;
  height: 83%;
  width: 100%
}



  /*---------------------------------------------------------------------------------*/
  /*                                       Tools                                     */
  /*---------------------------------------------------------------------------------*/

div.tools {
  position: relative;
  padding-left: 20%;
  padding-right: 20%;
}

a.tools {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}

ul.tools li {
  padding: 10px;
}



  /*---------------------------------------------------------------------------------*/
  /*                                 TOP Menu - Navbar                               */
  /*---------------------------------------------------------------------------------*/


  .navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(15, 47, 72);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* príklad tieňovania */
    z-index: 67;
    height: 40px;
  }

  .navbar-top ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 40px;
    display: flex; 
    align-items: center; 
    justify-content: center; /* Horizontálne zarovnanie na stred */
  }



  .navbar-top li {
    display: inline;
    margin-right: 20px; /* medzera medzi položkami menu */
    height: 40px;
    padding: 10px 14px; 
  }

  .navbar-top li:hover {
    animation: changeNavbarColor 2s forwards;
  }

  .navbar-top a {
    text-decoration: none;
    color: white;
  }

  .btn-navbar {
    background-color: transparent;
    border: none;
    padding: 0px 10px 0px 10px;
    font-family: sans-serif;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
  }

  @keyframes changeNavbarColor {
    0% {
      background-color: transparent;
    }
    100% {
      background-color: rgb(101, 189, 114);
    }
  }

  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                 Navbar menu                                                 */
  /*-------------------------------------------------------------------------------------------------------------*/

  nav ul.navbar-burger{
    float: right;
  }

  nav ul.navbar-burger li.navbar-burger{
    display: inline-block;
    line-height: 80px;
  }

  nav ul.navbar-burger li.navbar-burger a.navbar-burger{
    color: black;
  }

  li.navbar-burger:hover a.navbar-burger:hover{
    color: white;
  }

  a.active, a.navbar-burger:hover{
    transition: .5s;
  }

  li.navbar-burger:hover{
    background-color: rgb(15, 47, 72);
  }


  .checkbtn{
    font-size: 30px;
    color: black;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
  }

  .checkbtn{
      display: block;
    }

  ul.navbar-burger{
    position: fixed;
    width: 20%;
    height: 100vh;
    background: rgb(190, 190, 190);
    top: 0;
    right: -20%;
    text-align: center;
    transition: all .5s;
    z-index: 68;
    overflow-y: auto;
    padding-top: 150px;
  }

  ul.odrazka {
    margin-top: 25px;
  }

  ul.remaining-items{
    margin-top: 29px;
  }

  li.navbar-burger{
    height: 62px;
    font-family: "MicroExtendFLF";
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
  }

  nav ul.navbar-burger li.navbar-burger{
    display: block;
    line-height: 30px;
  }

  nav ul.navbar-burger li.navbar-burger a.navbar-burger{
    font-size: 21px;
    text-decoration: none;
    vertical-align: middle;
  }

  a.navbar-burger{
    width: 100%;
    height: 100%;
    padding-left: 25px;
    position: relative;
    top: 15px;
  }

  a.navbar-burger:hover,a.active{
    background: none;
    color: white;
  }

  #check:checked ~ ul.navbar-burger{
    right: 0;
  }



  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                    Navbar button                                            */
  /*-------------------------------------------------------------------------------------------------------------*/

  .menu-btn {
    position: fixed;
    display: flex;
    right: 20px;
    top: 8px;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    z-index: 69;
  }

  .menu-btn-burger {
    width: 25px;
    height: 4px;
    background: rgb(101, 189, 114);
    border-radius: 5px;
    transition: all .5s ease-in-out;
  }

  .menu-btn-burger::before,
  .menu-btn-burger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 4px;
    background: rgb(101, 189, 114);
    border-radius: 5px;
    transition: all .5s ease-in-out;
  }

  .menu-btn-burger::before {
    transform: translateY(-8px);
  }

  .menu-btn-burger::after {
    transform: translateY(8px);
  }

  /* ANIMATION */
  .menu-btn.open .menu-btn-burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
  }

  .menu-btn.open .menu-btn-burger::before {
    transform: rotate(45deg) translate(35px, -35px);
    background: rgb(15, 47, 72);
  }

  .menu-btn.open .menu-btn-burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
    background: rgb(15, 47, 72);
  }

  .menu-btn:hover .menu-btn-burger::before {
    top: 9px;
  }

  .menu-btn:hover .menu-btn-burger::after {
    bottom: 9px;
  }

  .menu-btn.open:hover .menu-btn-burger::before {
    top: 0px;
  }

  .menu-btn.open:hover .menu-btn-burger::after {
    bottom: 0px;
  }

  div.menu-summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  table.menu-summary {
    margin: 5px 20px;
  }

  table.menu-summary td {
    width: max-content;
    text-align: left;
    padding: 2px 8px;
  }

  .al-right {
    text-align: right !important;
  }



    body {
      background-color: white;
      background-repeat:  no-repeat;
      background-size: cover;
      background-attachment: fixed;
      min-height: 100vh;
      font-family: 'Roboto', sans-serif;
    }

    h1{
      color: rgb(15, 47, 72);
      font-size: 30px;
      font-weight: 300;
      margin: 0;
      text-align: center;
      margin-bottom: 20px;
      font-family: "MicroExtendFLF";
      line-height: 1.5em;
    }

    h2{
      font-family: "MicroExtendFLF";
      font-size: 38px;
      line-height: 150%;
      color: black;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 500;
    }
    
    h3{
      margin-top: 0em;
      margin-bottom: 0.5em;
      line-height: 140%;
      color: rgb(15, 47, 72);
      font-size: 27px;
      font-family: "MicroExtendFLF";
      font-weight: 500;
    }

    .hidden{
      display: none;
    }


  /* The container */
  .containerCheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default radio button */
  .containerCheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* When the radio button is checked, add a color background */
  .containerCheck input:checked ~ .checkmark {
    background-color: rgb(15, 47, 72);
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
  .containerCheck input:checked ~ .checkmark:after {
    display: block;
  }

  div.summary-box{
    width: 50%;
    position: relative;
    margin: auto;
    color: black;
    font-family: sans-serif;
    width: 30%; 
    background:rgb(190, 190, 190); 
    border-radius:10px; 
    text-align:left; 
    padding:20px;
  }


  div.box {
    width: 50%;
    position: relative;
    margin: auto;
    color: black;
    font-family: sans-serif;
  }

  div.table-box {
    width: 98%;
    position: relative;
    margin: auto;
    color: black;
    font-family: sans-serif;
    max-width: fit-content;
  }

  h1.login {
    text-align: center;
    position: relative;
  }

  .box h1.login {
    font-size: 40px;
    text-decoration: underline;
    margin-bottom: 50px;
    padding: 13px 0;
  }

  .textbox{
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    padding: 8px 0;
    margin: 2px 0;
    border-bottom: 1px solid rgb(15, 47, 72);
  }

  .textbox i{
    width: 26px;
    float: left;
    text-align: center;
  }

  .textbox input{
    border: none;
    outline: none;
    background: none;
    color: black;
    font-size: 14px;
    width: 95%;
    margin: 0 3px;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid black;
  }

  /* The container */
  .containerCheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default radio button */
  .containerCheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* When the radio button is checked, add a color background */
  .containerCheck input:checked ~ .checkmark {
    background-color: rgb(101, 189, 114);
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
  .containerCheck input:checked ~ .checkmark:after {
    display: block;
  }

  div.center{
    margin: auto;
  }

  .center-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  td.pdf {
    margin: 0;
    padding: 0;
  }

  .pdf-btn{
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    color: black;
    padding: 0px;
  }

  .pdf-btn:hover {
    color: rgb(15, 47, 72);
    text-decoration: underline;
    cursor: pointer;
  }


  .btn:hover {
    animation: buttonColor 10000s;
  }

  .btn-delete:hover {
    animation: buttonColorDelete 10000s;
  }

  div.empty {
    width: 100%;
    height: 30px;
  }

  #notice, #note, #items, #data {
    width: 100%;
    height: 150px;
    border: 1px solid rgb(15, 47, 72);
    background-color: transparent;
    color: black;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
  }

  .notice-area {
    width: 300px;
    background-color: transparent;
    color: black;
    border: none;
    padding: 0px 5px 0px 5px;
    font-size: 11px;
    height: 35px;
    font-family: sans-serif;
  }

  .btn,
  .btn-delete,
  .btn-green {
    width: 100%;
    margin: auto;
    display: block;
    background: none;
    color: black;
    padding: 0px;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
    margin: 4px 0;
  }

  .btn{
    border: 2px solid rgb(15, 47, 72);
  }

  .btn-delete{
    border: 2px solid red;
  }

  .btn-green{
    border: 2px solid green;
  }

  textarea:focus {
    outline: none;
  }


  .btn-green:hover {
    animation: buttonColorGreen 10000s;
  }

  details.odrazka {
    cursor: pointer;
  }

  ul.odrazka {
  margin-left: 20px;
  list-style-type: none;
  }

  a.summary {
  margin-left: 25px;
  }

  details[open] summary::-webkit-details-marker,
  details[open] summary::marker {
  content:  " + ";
  }

  summary::-webkit-details-marker {
  display: none;
  }

  details[open] ul.odrazka {
  animation: animateDown 0.3s forwards;
  }

  .details-menu[open] ~ .remaining-items {
    animation: animateDown 0.3s forwards;
  }

  @keyframes animateDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }

  .dashboard {
    width: 80%;
    margin: 0 auto;
  }

  .dashboard-row {
    display: flex;
  }

  .dashboard-cell {
    flex: 1;
    width: 14%;
    margin: 1%;
    background-color: rgb(15, 47, 72);
    padding: 10px;
  }

  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                            Left / right side navbar                                         */
  /*-------------------------------------------------------------------------------------------------------------*/


  ul.left-side-menu {
    padding: 15;
    list-style: none;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 9%;
    margin: auto;
  }

  li.left-side-menu,
  li.right-side-menu {
    font: bold 16px/1.4 'Open Sans', arial, sans-serif;
    color: black;
    position: relative;
    padding-bottom: 18px;
    padding-top: 18px;
    text-align: center;
  }

  ul.right-side-menu {
    padding: 15;
    list-style: none;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 5%;
    right: 20px;
    margin: auto;
  }

  div.left-side-menu {
    position: relative;
    top: 2vh;
    left: 10vw;
    width: fit-content;
    background-color: rgb(15, 47, 72);
    border-radius: 1vh;
    padding: 1vh 1vw;
  }

  /*--------------------------------- */
  /*          corner-button           */    
  /*--------------------------------- */    

  ul.corner-button {
    list-style: none;
    width: auto;
    text-align: center;
    position: fixed;
    top: 1.5vw;
    right: 2vh;
    z-index: 100;
  }

  ul.corner-button li {
    background-color: rgb(15, 47, 72, 0.9);
    padding: 0.5vh 0.5vw;
    border-radius: 2vh;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 1vh;
    cursor: pointer;
  }

  ul.corner-button li:hover {
    transform: scale(1.08);
    background-color: rgb(15, 47, 72);
  }

  button.corner-button {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    font: bold 18px/1.4 'Open Sans', arial, sans-serif;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
  }

  button.corner-button:hover {
    color: white;
  }

  .corner-button-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    transition: filter 0.3s ease;
    margin-right: 0.2vw;
  }

  ul.corner-button li:hover button {
    color: rgb(101, 189, 114);
    cursor: pointer;
  }

  ul.corner-button button {
    font-size: 1.6vh;
  }

  /*--------------------------------- */
  /*          toggle-switch           */    
  /*--------------------------------- */    

  .toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    width: 100%; 
  }

  .toggle-label {
    color: black;
    cursor: pointer;
  }

  .toggle-switch {
    position: relative;
    width: 3vw;
    height: 2.1vh;
  }

  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .toggle-slider {
    position: absolute;
    cursor: pointer;
    width: 3vw;
    height: 2.1vh;
    background-color: #ccc;
    border-radius: 15px;
    transition: background-color 0.3s;
  }

  .toggle-slider::before {
    content: "";
    position: absolute;
    width: 1.65vh;
    height: 1.65vh;
    left: 5px;
    bottom: 50%;
    transform: translateY(50%);
    background-color: rgb(15, 47, 72);
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .toggle-switch input:checked + .toggle-slider {
    background-color: rgb(101, 189, 114); 
  }

  .toggle-switch input:checked + .toggle-slider::before {
    transform: translate(1.65vw, 50%);
    background-color: white;
  }

  .toggle-switch input:checked ~ .toggle-label {
    color: black;
  }

  .toggle-switch input:checked + .toggle-slider {
    background-color: rgb(101, 189, 114); 
  }

  .toggle-switch input:checked + .toggle-slider::before {
    transform: translate(1.65vw, 50%);
    background-color: rgb(15, 47, 72);
  }

  .toggle-switch input:checked ~ .toggle-label {
    color: black;
  }


  /*--------------------------------- */
  /*              logout              */    
  /*--------------------------------- */    

  ul.logout {
    list-style: none;
    display: flex;
    width: auto;
    text-align: center;
    position: fixed;
    top: 30px;
    right: 35px;
    z-index: 100;
    gap: 20px;
  }

  li.logout {
    font: bold 20px/1.4 'Open Sans', arial, sans-serif;
    color: black;
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center;
  }

  a.logout {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    font: bold 18px/1.4 'Open Sans', arial, sans-serif;
    padding: 15px 15px;
    display: inline;
    position: relative;
  }

  a.logout:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    left: 50%;
    position: absolute;
    background: rgb(15, 47, 72);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    box-shadow: 1px 1px 2px black;
  }

  a.logout:hover:after {
    width: 100%;
    border-radius: 10%;
    left: 0;
  }

  a.logout:hover {
    color: rgb(15, 47, 72);
    text-shadow: 1px 1px 2px black;
  }

  a.contact:link {
    color: rgb(15, 47, 72);
  }

  a.contact:visited {
    color: rgb(15, 47, 72);
  }

  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                 Dashboard                                                   */
  /*-------------------------------------------------------------------------------------------------------------*/

  div.dashboard-center2 {
    margin: auto;
  }

  div.dashboard-center {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
  }

  table.dashboard-table{
    background: transparent;
    width: 100%;
  }

  td.dashboard {
    width: 16.5%;
    height: 22vh;
    background-color: rgb(15, 47, 72);
    opacity: 1;
  }

  td.netflix {
    width: 16.5%;
    height: 22vh;
    background-color: black;
    opacity: 1;
  }


  h4.dashboard-titel{
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 30px;
    padding-top: 35px;
    text-transform: uppercase;
    margin-left: 30px;
    -webkit-transition: color 0.5s; 
    -moz-transition: color 0.5s; 
    -ms-transition: color 0.5s; 
    -o-transition: color 0.5s; 
    transition: color 0.5s;
  }

  p.dashboard-info{
    color: rgb(101, 189, 114);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 60px;
  }


  .dashboard{
    fill: rgb(101, 189, 114);
    transition: fill 0.5s;
    width: 50px;
    margin-left: 30px;
    margin-top: 60px;
  }

  .dashboard svg{
    margin-top: 10px;
  }

  svg.dashboard {
    width: 40pt;
    height: 45px;
  }


  path.dashboard{
    fill: rgb(101, 189, 114);
  }


  .dashboard:hover {
    background-image: linear-gradient(135deg, rgb(15, 47, 72) 10%, rgb(101, 189, 114) 80%);
    cursor: pointer;
  }

  td.netflix:hover {
    background-image: linear-gradient(135deg, rgb(0, 0, 0) 10%, rgb(151, 7, 7) 80%);
    cursor: pointer;
  }

  svg.dashboard:hover {
    background-image: none;
  }

  .dashboard:hover h4{
    color: rgb(15, 47, 72);
  }

  .netflix:hover h4{
    color: white;
  }

  .dashboard:hover p{
    color:white;
  } 

  .dashboard:hover path{
    fill:white;
  } 

  a.dashboard {
    text-decoration: none;
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                  Notifications                                              */
  /*-------------------------------------------------------------------------------------------------------------*/

  .notifications-bell {
    position: fixed;
    top: 4px;
    right: 60px;
    z-index: 19844949;
  }

  .bell-button { 
    background: transparent; 
    border: none; 
    padding: 0; 
    cursor: pointer; 
  }

  .bell-icon { 
    width: 30px; 
    height: 30px; 
    display: block; 
  }

  img.bell-button {
    width: 30px;
    height: 30px;
  }

.notifications-dropdown {
    position: absolute;
    right: 0;
    top: 52px;
    width: 360px;
    max-height: 60vh;
    background: #fff;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.notifications-dropdown.hidden {
    display: none;
}

.notifications-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #0f2f48;
    color: #fff;
    font-weight: 600;
}

.notifications-header .badge {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
}

.notifications-list {
    overflow-y: auto;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-item {
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid transparent;
}

.notification-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
}

.notification-message {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.25rem;
    text-align: left;
}

.notification-meta {
    margin-top: 6px;
    display: flex;
    gap: 10px;
    font-size: 12px;
    opacity: 0.8;
    flex-wrap: wrap;
}

.notification-link {
    margin-top: 8px;
    display: inline-block;
    font-size: 13px;
    text-decoration: underline;
    text-align: left;
    width: 100%;
}

.notification-empty {
    text-align: center;
    color: #667085;
    padding: 18px 0;
}

.dot-unseen {
    width: 10px;
    height: 10px;
    background: #ef4444; /* červená bodka pre nevidené */
    border-radius: 50%;
    display: inline-block;
}

/* --- Farby podľa levelu (background + jemný border) --- */
/* info */
.level-info { background: #eef6ff; border-color: #bfdbfe; }
/* success */
.level-success { background: #ecfdf5; border-color: #bbf7d0; }
/* warning - ORANŽOVÝ */
.level-warning { background: #fff7ed; border-color: #fed7aa; }
/* error */
.level-error { background: #fef2f2; border-color: #fecaca; }

/* nevidené zvýrazníme mierne */
.notification-item.unseen {
    outline: 2px solid rgba(0,0,0,0.08);
}



  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                Table - Database                                             */
  /*-------------------------------------------------------------------------------------------------------------*/

  table.table-database {
    min-width: max-content;
    z-index: 1;
    width: 100%;
    border: none;
    border-spacing: 0;
    position: sticky;
    top: 40px;
  }

  tr.clickable,
  th.clickable,
  td.clickable {
    cursor: pointer;
  }

  .table-database th,
  .table-database td {
    padding: 0px 5px 0px 5px;
    text-align: left;
    border: 1px solid rgb(15, 47, 72);
  }

  .table-height td,
  .table-height th,
  .table-height tr {
    height: 30px;
    padding: 0px;
  }


  .table-database tr:hover td {
    border-bottom: 1px solid rgb(30, 255, 0) !important;
    border-top: 1px solid rgb(30, 255, 0) !important;
  }


  div.table-box {
    width: 98%;
    position: sticky;
    top: 0px;
    margin: auto;
    color: black;
    font-family: sans-serif;
    font-size: 15px;
    max-width: fit-content;
  }

  div.table-box2 {
    width: 98%;
    top: 0px;
    margin: auto;
    color: black;
    font-family: sans-serif;
    font-size: 15px;
    max-width: fit-content;
  }

  .table-database th {
    background-color: rgb(190, 190, 190);
    color: black;
    z-index: 2;
    position: sticky;
    top: 40px;
    padding: 5px 5px;
  }

  .table-database td {
    padding: 5px;
    text-align: left;
    border: 1px solid rgb(15, 47, 72);
    color: black;
    background-color: white;
    z-index: 1; 
    position: sticky;
    top: 40px;
  }

  .table-database thead th:first-child {
    background-color: rgb(190, 190, 190);
    color: black;
    z-index: 4; 
  }

  .table-database thead th:nth-child(2),
  .table-database thead th:nth-child(3),
  .table-database thead th:nth-child(4) {
    background-color: rgb(190, 190, 190);
    color: black;
    z-index: 3; 
  }

  div.center-elements {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
  }

  .standard-container {
    background-color: rgb(101, 189, 114);
    padding: 35px;
    border: 3px solid rgb(15, 47, 72);
    border-radius: 12px;
    max-height: 100vh;           
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
  }

  .table-database2 thead tr {
    position: sticky;
    top: 0; /* Posúva sa, kým nenarazí na vrch kontajnera */
    background-color: #1a1a1a; /* Pridaj farbu pozadia, aby neprekrýval text */
    z-index: 10; /* Aby sa držal nad ostatnými prvkami */
}

  .table-database2 {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #e3e1e1;
    margin: 2vh 0;
    font-size: 0.9em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Table headers */
  .table-database2 th {
    background-color: rgb(15, 47, 72);  
    color: #ffffff;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    position: sticky;
    font-size: 1.5vh;
    z-index: 10;
  }
  
  /* Table cells */
  .table-database2 td {
    text-align: left;
    padding: 1vh;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s;
    font-size: 1.4vh;
    background-color: #e3e1e1;
  }

  .table-container {
    position: relative;
    overflow-y: auto; /* Povolený posun */
}
  
  /* Striped rows */
  .table-database2 tbody tr:nth-child(even) td, .table-database2 tbody tr:nth-child(even) td input.initial-color, .table-database2 tbody tr:nth-child(even) td textarea.initial-color {
    background-color: #f2f2f2;
  }

  
  .table-database2 tbody tr {
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect for rows */
  .table-database2 tbody tr:hover td {
    background-color: rgb(15, 47, 72) !important;
  }

  .table-database2 tbody tr:hover td, .table-database2 tbody tr:hover td a {
    color: white !important;
  }

  .table-database2-hover td {
    white-space: nowrap;
  }

  .table-database3 thead tr {
    position: sticky;
    top: 0; /* Posúva sa, kým nenarazí na vrch kontajnera */
    z-index: 10; /* Aby sa držal nad ostatnými prvkami */
}

table.left-side-menu {
  width: auto;
}

table.left-side-menu td {
  color: white;
  font-size: 1.6vh;
  padding: 0.5vh 0.5vw;
}

.filter-input {
  width: 8vw;
  padding: 0.2vh 0.2vw;
  border: 2px solid rgb(101, 189, 114, 0.5);
  border-radius: 0.5vh; 
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); 
  transition: border-color 0.3s;
  height: 3vh;
}

.filter-input:focus {
  border-color: rgb(101, 189, 114);
  outline: none; 
}

.menu-toggle2 {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  color: #111;
  background: #e0e0e0;
  border-radius: 8px;
  margin-bottom: 8px;
  display: inline-block;
}

.menu-content2 {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.menu-content2.open {
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
}

#menu-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu-content2.open + #menu-arrow {
  transform: rotate(180deg);
}

.menu-toggle2 {
  width: 100%;
  margin-bottom: 10px;
}

.menu-toggle2 .corner-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left; /* centrovanie obsahu ako pri ostatných */
}


  textarea.myTextarea {
    width: 100%; /* Zaberá celú šírku bunky */
    padding: 0.4vh 0.2vw; /* Vnútorné odsadenie */
    border: 1px solid #ccc; /* Svetlo šedý okraj */
    border-radius: 4px; /* Zaoblené rohy */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Jemný vnútorný tieň */
    transition: border-color 0.3s; /* Plynulý prechod farby okraja */
    resize: vertical; /* Povolenie vertikálneho zmenšovania/rozťahovania */
    font-family: inherit; /* Zdedí font z rodičovského elementu */
    resize: none;
    font-size: 1.2vh;
    min-width: 15vw;
  }
  
  textarea.myTextarea:focus {
    border-color: rgb(15, 47, 72); /* Zvýraznený okraj pri zaostrení */
    outline: none; /* Odstránenie predvoleného rámčeka */
  }


  .table-wrapper th:nth-child(1),
  .table-wrapper td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 100px;
    z-index: 5;
  }

  .table-wrapper th:nth-child(2),
  .table-wrapper td:nth-child(2) {
    position: sticky;
    left: 100px;
    width: 190px;
    z-index: 5;
  }

  .table-wrapper th:nth-child(3),
  .table-wrapper td:nth-child(3) {
    position: sticky;
    left: 290px;
    z-index: 5;
  }

  .table-wrapper-installers th:nth-child(1),
  .table-wrapper-installers td:nth-child(1) {
    position: sticky;
    left: 0;
    width: max-content;
    z-index: 2;
  }

  .table-wrapper-rent th:nth-child(1),
  .table-wrapper-rent td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 50px;
    z-index: 2;
  }

  .table-wrapper-rent th:nth-child(2),
  .table-wrapper-rent td:nth-child(2) {
    position: sticky;
    left: 50px;
    width: 100px;
    z-index: 4;
  }

  .table-wrapper-rent th:nth-child(3),
  .table-wrapper-rent td:nth-child(3) {
    position: sticky;
    left: 150px;
    width: 100px;
    z-index: 4;
  }

  .table-wrapper-rent th:nth-child(4),
  .table-wrapper-rent td:nth-child(4) {
    position: sticky;
    left: 250px;
    width: max-content;
    z-index: 4;
  }

  .table-wrapper-payroll th:nth-child(1),
  .table-wrapper-payroll td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 150px;
    z-index: 4;
  }

  .table-wrapper-payroll th:nth-child(2),
  .table-wrapper-payroll td:nth-child(2) {
    position: sticky;
    left: 150px;
    width: 85px;
    z-index: 4;
  }

  .table-wrapper-payroll th:nth-child(3),
  .table-wrapper-payroll td:nth-child(3) {
    position: sticky;
    left: 235px;
    width: max-content;
    z-index: 4;
  }

  .table-wrapper-gr th:nth-child(1),
  .table-wrapper-gr td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 100px;
    z-index: 2;
  }

  .table-wrapper-gr th:nth-child(2),
  .table-wrapper-gr td:nth-child(2) {
    position: sticky;
    left: 100px;
    width: 160px;
    z-index: 2;
  }

  .table-wrapper-gr th:nth-child(3),
  .table-wrapper-gr td:nth-child(3) {
    position: sticky;
    left: 260px;
    width: 120px;
    z-index: 2;
  }

  .table-wrapper-gr th:nth-child(4),
  .table-wrapper-gr td:nth-child(4) {
    position: sticky;
    left: 380px;
    width: 220px;
    z-index: 2;
  }

  .table-wrapper-gr th:nth-child(5),
  .table-wrapper-gr td:nth-child(5) {
    position: sticky;
    left: 600px;
    width: 250px;
    z-index: 2;
  }

  .table-wrapper-invoice_gr th:nth-child(1),
  .table-wrapper-invoice_gr td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 100px;
    z-index: 2;
  }

  .table-wrapper-invoice_gr th:nth-child(2),
  .table-wrapper-invoice_gr td:nth-child(2) {
    position: sticky;
    left: 100px;
    width: 100px;
    z-index: 2;
  }

  .table-wrapper-invoice_gr th:nth-child(3),
  .table-wrapper-invoice_gr td:nth-child(3) {
    position: sticky;
    left: 200px;
    width: 150px;
    z-index: 2;
  }

  .table-wrapper-invoice_gr th:nth-child(4),
  .table-wrapper-invoice_gr td:nth-child(4) {
    position: sticky;
    left: 350px;
    width: 250px;
    z-index: 2;
  }

  .table-wrapper-cars th:nth-child(1),
  .table-wrapper-cars td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 100px;
    z-index: 4;
  }

  .table-wrapper-cars th:nth-child(2),
  .table-wrapper-cars td:nth-child(2) {
    position: sticky;
    left: 100px;
    width: 120px;
    z-index: 4;
  }

  .table-wrapper-cars th:nth-child(3),
  .table-wrapper-cars td:nth-child(3) {
    position: sticky;
    left: 220px;
    width: max-content;
    z-index: 4;
  }

  .table-wrapper-reclamation th:nth-child(1),
  .table-wrapper-reclamation td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 30px;
    z-index: 2;
  }

  .table-wrapper-reclamation th:nth-child(2),
  .table-wrapper-reclamation td:nth-child(2) {
    position: sticky;
    left: 30px;
    width: 250px;
    z-index: 2;
  }

  .table-wrapper-reclamation th:nth-child(3),
  .table-wrapper-reclamation td:nth-child(3) {
    position: sticky;
    width: 140px;
    left: 280px;
    z-index: 2;
  }

  .table-wrapper-reclamation-fa th:nth-child(1),
  .table-wrapper-reclamation-fa td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 150px;
    z-index: 2;
  }

  .table-wrapper-reclamation-fa th:nth-child(2),
  .table-wrapper-reclamation-fa td:nth-child(2) {
    position: sticky;
    left: 150px;
    width: 250px;
    z-index: 2;
  }

  .table-wrapper-reclamation-fa th:nth-child(3),
  .table-wrapper-reclamation-fa td:nth-child(3) {
    position: sticky;
    left: 400px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(1),
  .table-wrapper-installation td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 70px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(2),
  .table-wrapper-installation td:nth-child(2) {
    position: sticky;
    left: 70px;
    width: 120px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(3),
  .table-wrapper-installation td:nth-child(3) {
    position: sticky;
    left: 190px;
    width: 160px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(4),
  .table-wrapper-installation td:nth-child(4) {
    position: sticky;
    width: 110px; 
    left: 350px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(5),
  .table-wrapper-installation td:nth-child(5) {
    position: sticky;
    width: 200px;
    left: 460px;
    z-index: 2;
  }

  .table-wrapper-kernbohrungen th:nth-child(1),
  .table-wrapper-kernbohrungen td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 95px;
    z-index: 2;
  }

  .table-wrapper-kernbohrungen th:nth-child(2),
  .table-wrapper-kernbohrungen td:nth-child(2) {
    position: sticky;
    left: 95px;
    width: 95px;
    z-index: 2;
  }

  .table-wrapper-kernbohrungen th:nth-child(3),
  .table-wrapper-kernbohrungen td:nth-child(3) {
    position: sticky;
    left: 190px;
    width: 200px;
    z-index: 2;
  }

  .table-wrapper-kernbohrungen th:nth-child(4),
  .table-wrapper-kernbohrungen td:nth-child(4) {
    position: sticky;
    left: 390px;
    z-index: 2;
  }

  .table-wrapper,
  .table-wrapper-invoices,
  .table-wrapper-installers, 
  .table-wrapper-payroll, 
  .table-wrapper-installation,
  .table-wrapper-kernbohrungen, 
  .table-wrapper-cars,
  .table-wrapper-rent, 
  .table-wrapper-gr, 
  .table-wrapper-reclamation {
    overflow-x: scroll;
    overflow-y: visible;
    height: 100vh;
  }

  .table-wrapper-invoices th:nth-child(1),
  .table-wrapper-invoices td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 90px;
    z-index: 2;
  }

  .table-wrapper-invoices th:nth-child(2),
  .table-wrapper-invoices td:nth-child(2) {
    position: sticky;
    left: 90px;
    width: 90px;
    z-index: 2;
  }

  .table-wrapper-invoices th:nth-child(3),
  .table-wrapper-invoices td:nth-child(3) {
    position: sticky;
    left: 180px;
    width: 180px;
    z-index: 2;
  }

  .table-wrapper-invoices th:nth-child(4),
  .table-wrapper-invoices td:nth-child(4) {
    position: sticky;
    left: 360px;
    z-index: 2;
  }

  .select-status {
    color: white !important;
    background-color: rgb(15, 47, 72);
    border: none;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    font-family: sans-serif;
    font-size: 15px;
  }


  .arrowContainer {
    width: 30px;
    background: none;
    border: none;
  }

  .arrowLine {
    height: 6px;
    width: 30px;
    background-color: rgb(15, 47, 72);
    margin-top: 10px;
    margin-bottom: 10px;
  }

  table.backNext {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    border: none;
    table-layout: auto;
  }



  td.back,
  td.next {
    width: 30px;
    padding: 0;
  }

  td.middle {
    font: 18px sans-serif;
    color: rgb(15, 47, 72);
  }

  button.mybtn-arrow {
    background: none;
    border: none;
    padding: 0;
  }

  .arrowContainer {
    width: 30px;
    background: none;
    cursor: pointer;
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                            Table job_detail                                                 */
  /*-------------------------------------------------------------------------------------------------------------*/

  table.table-job-detail td{
    padding-right: 20px;
    padding-bottom: 5px;
    vertical-align: top;
  }

  td.year_left {
    color:rgb(15, 47, 72);
    padding: 10px 0px 10px 0px;
    font-size: 18px;
    font-weight: 700;
    float: left;
  }

  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                   Profil                                                    */
  /*-------------------------------------------------------------------------------------------------------------*/

  table.profil {
    border-collapse: separate;
    font-family: "Arial", sans-serif;
    font-size: 18px;
    width: 100%;
  }

  td.profil {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    white-space: nowrap;
    width: 60%;
  }

  td.left {
    color: rgb(15, 47, 72);
    font-weight: bold;
    width: 40%;
  }


  a.a-button{
    border: 5px solid;
    border-color: rgb(15, 47, 72);
    border-radius: 10px;
    color: black;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition-duration: 1.5s;
  }

  a.a-button:hover {
    background-color: black;
    color: rgb(15, 47, 72);
    transition-duration: 1s;
    cursor: pointer;
  }

  .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: 1px;
    overflow: hidden; /* Pre vnútorný kruh */
  }

  .circle::before {
    content: attr(data-letter); /* Dynamické priradenie písmena */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 12px; 
    color: var(--data-color);
  }

  .square {
    width: 25px;
    height: 25px;
    display: inline-block;
    position: relative;
    top: 1px;
    overflow: hidden; /* Pre vnútorný kruh */
  }

  .square::before {
    content: attr(data-letter); /* Dynamické priradenie písmena */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 12px; 
    color: var(--data-color);
  }


  @keyframes buttonColor {
    0% {
        background-color: none;
    }
    0.01% {
        background-color: rgb(15, 47, 72);
        color: white
    }
    100% {
        background-color: rgb(15, 47, 72); 
        color: white;
    }
  }


  @keyframes buttonColorDelete {
    0% {
        background-color: none;
    }
    0.01% {
        background-color: red;
    }
    100% {
        background-color: red; 
    }
  }

  @keyframes buttonColorGreen {
    0% {
        background-color: none;
    }
    0.01% {
        background-color: green;
        color: white;
    }
    100% {
        background-color: green;
        color: white;
    }
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                     Finance                                                 */
  /*-------------------------------------------------------------------------------------------------------------*/

  td.finance_left {
    color:rgb(15, 47, 72);
    padding: 10px 0px 10px 0px;
    font-size: 18px;
    font-weight: 700;
    float: left;
  }


  .single-chart {
    width: 50%; 
    justify-content: center;
    align-items: center;
    margin-left: 25%;
  }


  .circular-chart {
    margin: 10px auto;
    max-width: 100%;
    max-height: 250px;
  }

  .circle-bg {
    fill: none;
    stroke: rgb(190, 190, 190);
    stroke-width: 3.8;
  }

  .circle {
    fill: none;
    stroke-width: 3.5;
    animation: progress 3s ease-out forwards;
  }

  .bar-chart {
    margin: 10px auto;
    max-width: 100%;
    max-height: 250px;
  }

  .bar {
    fill: none;
    stroke-width: 14;
    animation: progress 2s ease-out forwards;
  }

  .bar-income {
    stroke: rgb(15, 47, 72);
  }

  .bar-outcome {
    stroke: rgb(225, 0, 0);
  }

  .bar-profit {
    stroke: rgb(101, 189, 114);
  }



  @keyframes progress {
    0% {
      stroke-dasharray: 0 100;
    }
  }



  .circular-chart.lcomplete .circle {
    stroke: rgb(15, 47, 72);
  }

  .circular-chart.green .circle {
    stroke: rgb(101, 189, 114);
  }


  .percentage {
    fill: rgb(15, 47, 72);
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
  }


  div.ring-chart-center {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50%;
  }

  table.ring-chart{
    background: transparent;
    width: 100%;
  }

  td.ring-chart {
    width: 50%;
    height: auto;
  }

  table.bar-chart{
    background: transparent;
    width: 100%;
  }

  td.bar-chart {
    width: 50%;
    height: auto;
  }

  .charts-css {
    list-style: none;
    padding-left: 0;
    width: auto;
  }

  .charts-css li {
    position: relative;
    padding-left: 35px; 
    color: black;
    font-size: 18px;
    margin-bottom: 10px;
    width: auto;
  }

  .charts-css li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  .charts-css li:nth-child(1)::before {
    background-color: rgb(190, 190, 190); 
  }

  .charts-css li:nth-child(2)::before {
    background-color: rgb(15, 47, 72); 
  }

  p.chart{
    color: black;
    font-size: 18px;
  }


  .chart-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
  }

  .line-chart {
    width: 1000px;
    height: 500px;
    position: relative;
  }

  .x-axis {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5px;
    position: absolute;
    bottom: 0;
    width: 94%;
    height: 6%;
    bottom: 0px;
    color: black;
    margin: 0px 0px 0px 6%;
    bottom: -1%; 
  }

  .month {
    flex: 1;
    text-align: center;
  }


  .y-axis {
    position: absolute;
    color: black;
    padding-left: 0px;
    text-align: right;
    float: right;
    width: 5%
  }


  .data-line {
    position: absolute;
    width: 3px;
    transform-origin: top left;
    margin-left: 7px;
    margin-top: 7px;
    z-index: 2;
  }

  .income {
    stroke: rgb(15, 47, 72);
    fill: none;
  }

  .outcame {
    stroke: rgb(190, 190, 190);
    fill: none;
  }

  .pure-chart{
    position: absolute;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    width: 94%;
    height: 90%;
    left: 6%;
    top: 4%;
  }

  .chart-vertical-net{
    width: 1px;
    height: 100%;
    background-color: rgb(255,255,255,0.2);
    position: absolute;
  }


  .chart-horizontal-net{
    width: 100%;
    height: 1px;
    background-color: rgb(255,255,255,0.2);
    position: absolute;
  }


  .data-point-income {
    width: 12px;
    height: 12px;
    position: absolute;
    background-color: white;
    border-radius: 50%;
    cursor: pointer; 
    border: 2px solid rgb(15, 47, 72);
    z-index: 5;
  }

  .point-data-income {
    display: none;
    position: absolute;
    background: white;
    width: auto;
    height: 40px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid rgb(15, 47, 72);
    color: black;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    z-index: 6;
    white-space: nowrap;
    top: -45px;
    left: 12px;
  }

  .data-point-income:hover .point-data-income {
    display: block;
  }

  .data-point-income:hover{
    background-color: rgb(15, 47, 72);
  }

  .data-point-outcome {
    width: 12px;
    height: 12px;
    position: absolute;
    background-color: white;
    border-radius: 50%;
    cursor: pointer; 
    border: 2px solid rgb(225,0,0);
    z-index: 5;
  }

  .point-data-outcome {
    display: none;
    position: absolute;
    background: white;
    width: auto;
    height: 40px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid rgb(225,0,0);
    color: black;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    white-space: nowrap;
    top: -45px;
    left: 12px;
  }

  .data-point-outcome:hover .point-data-outcome {
    display: inline-block;
  }

  .data-point-outcome:hover{
    background-color: rgb(225,0,0);
  }


  .line-chart-legend{
    width: 1000px;
    position: relative;
    margin-left: 6%;
    margin-top: 20px;
  }

  .legend-line{
    height: 5px;
    width: 40px;
    border-radius: 2px;
  }

  td.legend-year{
    padding: 5px 10px 5px 10px;
  }


  .bar-charts-css {
    list-style: none;
    padding-left: 0;
    width: auto;
  }

  .bar-charts-css li {
    position: relative;
    padding-left: 35px; 
    color: black;
    font-size: 18px;
    margin-bottom: 10px;
    width: auto;
  }

  .bar-charts-css li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  .bar-charts-css li:nth-child(1)::before {
    background-color: rgb(15, 47, 72); 
  }

  .bar-charts-css li:nth-child(2)::before {
    background-color: rgb(225, 0, 0); 
  }

  .bar-charts-css li:nth-child(3)::before {
    background-color: rgb(101, 189, 114); 
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                Table summary                                                */
  /*-------------------------------------------------------------------------------------------------------------*/

  .table-summary td{
    padding-right: 20px;
    white-space: nowrap;
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                Color palette                                                */
  /*-------------------------------------------------------------------------------------------------------------*/

  #colorInput,
  #colorInput2 {
    font-size: 16px;
  }

  #colorPalette,
  #colorPalette2 {
    display: none;
    flex-direction: column; /* Zmena usporiadania na stĺpcový */
    position: absolute;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 10px;
    cursor: crosshair;
    align-items: center;
    background-color: white;
  }

  #selectedColor,
  #selectedColor2 {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    border: 1px solid white;
  }

  #confirmButton,
  #confirmButton2 {
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 20px;
    background-color: rgb(15, 47, 72);
    color: white;
    border: none;
    border-radius: 5px;
    position: relative;
    font-size: 14px;
  }

  #blueSlider,
  #blueSlider2 {
    margin-top: 10px;
    background-color: rgb(15, 47, 72);
    appearance: none;
    width: 100%;
  }

  #blueSlider::-webkit-slider-thumb,
  #blueSlider2::-webkit-slider-thumb {
    background-color: rgb(15, 47, 72);
  }

  #blueSlider::-moz-range-thumb,
  #blueSlider2::-moz-range-thumb {
    background-color: rgb(15, 47, 72);
  }

  #blueSlider::-ms-thumb,
  #blueSlider2::-ms-thumb {
    background-color: rgb(15, 47, 72);
  }


  table.payroll {
    border-collapse: collapse;
    width: 100%;
    margin: 20px;
  }

  table.payroll th, table.payroll td {
    border: 2px solid rgb(15, 47, 72);
    padding: 8px;
    text-align: left;
    background-color: white;
  }

  table.payroll th {
    text-align: center;
  }

  /* Dodatočné štýly pre usporiadanie tabuliek vedľa seba */
  .table-payroll-container {
    display: flex;
    justify-content: space-between;
  }

  .payroll td:nth-child(1) {
    width: max-content;
  }

  tr.gray-row td {
    background-color: rgb(220, 220, 220);
  }

  p.percents-text {
    position: absolute;
    bottom: 0;
    right: 0;
    color: red;
    font-size: 12px;
  }

/*--------------------------------- */
/*             LOADING              */    
/*--------------------------------- */

  #loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid rgb(15, 47, 72);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


  /*--------------------------------- */
  /*           UPLOAD FILE            */    
  /*--------------------------------- */

  .uploadFile {
    margin-bottom: 20px;
}

.uploadFile svg {
    fill: rgb(15, 47, 72);
    transition: fill 0.5s;
    margin-left: 10px;
}

.label-uploadFile {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.input-uploadFile {
    position: absolute;
    left: -9999px;
}

.custom-upload-text {
    color: rgb(15, 47, 72);
    margin-left: 10px;
    cursor: pointer;
}

.uploadFile:hover path {
    fill: black;
}

.uploadFile::-webkit-file-upload-button {
    border: 2px solid rgb(101, 189, 114);
    color: #ffffff;
    background-color: rgb(15, 47, 72);
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    left: 10px;
    cursor: pointer;
}


/*--------------------------------- */
/*           UPLOAD FILE            */    
/*--------------------------------- */

  div.uploadFileClassic{
    margin-bottom: 20px;
  }


  .uploadFileClassic{
    fill: rgb(15, 47, 72);
    transition: fill 0.5s;
    margin-left: 10px;
    
  }

  .label-uploadFileClassic{
    display: flex;
    padding-right: 15px;
  }


  input.uploadFileClassic {
    position: relative;
    cursor: pointer;
  }

  svg.uploadFileClassic{
    position: relative;
  }

  path.uploadFileClassic{
    fill: rgb(15, 47, 72);
  }

  svg.uploadFileClassic:hover {
    background-image: none;
  }

  .uploadFileClassic:hover path{
    fill:black;
  } 

  .uploadClassic{
    fill: rgb(15, 47, 72);
    transition: fill 0.5s;
    width: 50px;
    margin-left: 60px;
  }

  path.uploadClassic{
    fill: rgb(15, 47, 72);
  }

  .uploadClassic:hover {
    background-image: linear-gradient(135deg, rgb(15, 47, 72) 1%, rgb(15, 20, 22) 80%);
  }

  svg.uploadClassic:hover {
    background-image: none;
  }

  .uploadClassic:hover path{
    fill:black;
  } 

  .uploadFileClassic::-webkit-file-upload-button {
    border: 2px solid rgb(101, 189, 114);
    color: #ffffff;
    background-color: rgb(15, 47, 72);
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    left: 10px;
    cursor: pointer;
  }


  .overflow {
    max-width: 100px; /* šírka bunky */
    overflow: hidden; /* skryje prebytočný text */
    text-overflow: ellipsis; /* zobrazí trojbodku, ak text presahuje šírku bunky */
    white-space: nowrap; /* zabráni zalamovaniu textu na viacero riadkov */
    
  }

  .overflow:hover {
    max-width: 100%;
    background-color: rgba(210, 210, 210, 0.7);
  }


  .blank-head {
    height: 40px;
    position: sticky;
    top: 0px;
    background-color: #ffffff;
    z-index: 5;
  }

  .dashboard-button {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 100%; /* Roztiahnutie na celú šírku */
    height: 100%; /* Roztiahnutie na celú výšku */
    cursor: pointer;
  }

  table.table-settings {
    min-width: max-content;
    z-index: 1;
    width: 100%;
    border: 1px solid rgb(15, 47, 72);
    border-spacing: 0;
  }

  .table-settings th,
  .table-settings td {
    padding: 0px 5px 0px 5px;
    text-align: left;
    border: 1px solid rgb(15, 47, 72);
  }

  .table-settings th {
    background-color: rgb(190, 190, 190);
    padding: 5px;
  }


  /* Menšie písmo v date pickeri */
  .datepicker,
  .datepicker-dropdown {
    font-size: 14px; /* Nastavenie veľkosti písma */
  }



  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                   Cerebro                                                   */
  /*-------------------------------------------------------------------------------------------------------------*/


  .chat-container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
  }

  .chat-output {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    max-height: 400px;
  }

  .message {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;
    display: block;
    clear: both;
    overflow: hidden; /* Zabezpečí, že animovaný text nevyčnie z rámu */
  }

  /* Animácia postupného písania */
  .message.ai {
    overflow: hidden;
  }

  /* Skrytie vertikálnej posuvnej lišty */
  .message.ai::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    bottom: 100%;
    background: linear-gradient(transparent 60%, rgb(15, 47, 72) 80%); /* Farebný prechod na konci textu */
    animation: typeWriter 5s steps(40) forwards; /* Dĺžka animácie a rýchlosť písania */
  }

  @keyframes typeWriter {
    to {
        bottom: 0;
    }
  }


  .user {
    background-color: rgb(101, 189, 114);
    color: #ffffff;
    align-self: flex-end;
    text-align: left;
    float: right;
  }

  .ai {
    background-color: rgb(15, 47, 72);
    color: #ffffff;
    align-self: flex-start;
    text-align: left;
    float: left;
  }

  input.chat[type="text"] {
    width: 100%;
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .chatbtn {
    width: 20%;
    padding: 10px 0;
    background-color: rgb(15, 47, 72);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
  }

  .chatbtn:hover {
    background-color: rgb(101, 189, 114);
  }


/*-------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------- Mobile version-----------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/



@media (max-width:1100px) {
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    td.between {
      font-size: 16px;
      font-weight: 700;
    }

    #map {
      width: 100%;
      height: 600px;
  }

  img.logo-image {
    display: none;
  }

  /*---------------------------------------------------------------------------------*/
  /*                            TOP Menu - Navbar - Mobile                           */
  /*---------------------------------------------------------------------------------*/


  .navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(15, 47, 72);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* príklad tieňovania */
    z-index: 67;
    height: 55px;
  }

  .navbar-top ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex; 
    align-items: center; 
    justify-content: center; /* Horizontálne zarovnanie na stred */
  }

  .navbar-top li {
    display: inline;
    height: 55px;
    padding: 12px;
    margin: 0;
  }

  .navbar-top li:hover {
    animation: changeNavbarColor 2s forwards;
  }

  .navbar-top a {
    text-decoration: none;
    color: white;
    font-size: 18px;
  }

  .btn-navbar {
    background-color: transparent;
    border: none;
    padding: 0px 2px 0px 5px;
    font-family: sans-serif;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
  }

  @keyframes changeNavbarColor {
    0% {
      background-color: transparent;
    }
    100% {
      background-color: rgb(101, 189, 114);
    }
  }

  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                 Navbar menu                                                 */
  /*-------------------------------------------------------------------------------------------------------------*/

  nav ul.navbar-burger{
    float: right;
  }

  nav ul.navbar-burger li.navbar-burger{
    display: inline-block;
    line-height: 80px;
  }

  nav ul.navbar-burger li.navbar-burger a.navbar-burger{
    color: black;
  }

  li.navbar-burger:hover a.navbar-burger:hover{
    color: white;
  }

  a.active, a.navbar-burger:hover{
    transition: .5s;
  }

  li.navbar-burger:hover{
    background-color: rgb(15, 47, 72);
  }


  .checkbtn{
    font-size: 30px;
    color: black;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
  }

  .checkbtn{
      display: block;
    }

  ul.navbar-burger{
    position: fixed;
    width: 60%;
    height: 100vh;
    background: rgb(190, 190, 190);
    top: 0;
    right: -60%;
    text-align: center;
    transition: all .5s;
    z-index: 68;
    overflow-y: auto;
    padding-top: 150px;
  }

  ul.odrazka {
    margin-top: 25px;
  }

  ul.remaining-items{
    margin-top: 29px;
  }

  li.navbar-burger{
    height: 62px;
    font-family: "MicroExtendFLF";
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
  }

  nav ul.navbar-burger li.navbar-burger{
    display: block;
    line-height: 30px;
  }

  nav ul.navbar-burger li.navbar-burger a.navbar-burger{
    font-size: 21px;
    text-decoration: none;
    vertical-align: middle;
  }

  a.navbar-burger{
    width: 100%;
    height: 100%;
    padding-left: 25px;
    position: relative;
    top: 15px;
  }

  a.navbar-burger:hover,a.active{
    background: none;
    color: white;
  }

  #check:checked ~ ul.navbar-burger{
    right: 0;
  }



  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                    Navbar button                                            */
  /*-------------------------------------------------------------------------------------------------------------*/

  .menu-btn {
    position: fixed;
    display: flex;
    right: 20px;
    top: 8px;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    z-index: 69;
  }

  .menu-btn-burger {
    width: 25px;
    height: 4px;
    background: rgb(101, 189, 114);
    border-radius: 5px;
    transition: all .5s ease-in-out;
  }

  .menu-btn-burger::before,
  .menu-btn-burger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 4px;
    background: rgb(101, 189, 114);
    border-radius: 5px;
    transition: all .5s ease-in-out;
  }

  .menu-btn-burger::before {
    transform: translateY(-8px);
  }

  .menu-btn-burger::after {
    transform: translateY(8px);
  }

  /* ANIMATION */
  .menu-btn.open .menu-btn-burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
  }

  .menu-btn.open .menu-btn-burger::before {
    transform: rotate(45deg) translate(35px, -35px);
    background: rgb(15, 47, 72);
  }

  .menu-btn.open .menu-btn-burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
    background: rgb(15, 47, 72);
  }

  .menu-btn:hover .menu-btn-burger::before {
    top: 9px;
  }

  .menu-btn:hover .menu-btn-burger::after {
    bottom: 9px;
  }

  .menu-btn.open:hover .menu-btn-burger::before {
    top: 0px;
  }

  .menu-btn.open:hover .menu-btn-burger::after {
    bottom: 0px;
  }

  div.menu-summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  table.menu-summary {
    margin: 5px 20px;
  }

  table.menu-summary td {
    width: max-content;
    text-align: left;
    padding: 2px 8px;
  }

  .al-right {
    text-align: right !important;
  }



    body {
      background-color: white;
      background-repeat:  no-repeat;
      background-size: cover;
      background-attachment: fixed;
      min-height: 100vh;
      font-family: 'Roboto', sans-serif;
    }

    h1{
      color: rgb(15, 47, 72);
      font-size: 46px;
      font-weight: 300;
      margin: 0;
      text-align: center;
      margin-bottom: 20px;
      font-family: "MicroExtendFLF";
      line-height: 1.5em;
    }

    h2{
      font-family: "MicroExtendFLF";
      font-size: 38px;
      line-height: 150%;
      color: black;
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 500;
    }
    
    h3{
      margin-top: 0em;
      margin-bottom: 0.5em;
      line-height: 140%;
      color: rgb(15, 47, 72);
      font-size: 27px;
      font-family: "MicroExtendFLF";
      font-weight: 500;
    }

    .hidden{
      display: none;
    }


  /* The container */
  .containerCheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default radio button */
  .containerCheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* When the radio button is checked, add a color background */
  .containerCheck input:checked ~ .checkmark {
    background-color: rgb(15, 47, 72);
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
  .containerCheck input:checked ~ .checkmark:after {
    display: block;
  }

  div.summary-box{
    width: 50%;
    position: relative;
    margin: auto;
    color: black;
    font-family: sans-serif;
    width: 30%; 
    background:rgb(190, 190, 190); 
    border-radius:10px; 
    text-align:left; 
    padding:20px;
  }


  div.box {
    width: 50%;
    position: relative;
    margin: auto;
    color: black;
    font-family: sans-serif;
  }

  div.table-box {
    width: 98%;
    position: relative;
    margin: auto;
    color: black;
    font-family: sans-serif;
    max-width: fit-content;
  }

  h1.login {
    text-align: center;
    position: relative;
  }

  .box h1.login {
    font-size: 40px;
    text-decoration: underline;
    margin-bottom: 50px;
    padding: 13px 0;
  }

  .textbox{
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    padding: 8px 0;
    margin: 2px 0;
    border-bottom: 1px solid rgb(15, 47, 72);
  }

  .textbox i{
    width: 26px;
    float: left;
    text-align: center;
  }

  .textbox input{
    border: none;
    outline: none;
    background: none;
    color: black;
    font-size: 16px;
    width: 95%;
    margin: 0 3px;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid black;
  }

  /* The container */
  .containerCheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default radio button */
  .containerCheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* When the radio button is checked, add a color background */
  .containerCheck input:checked ~ .checkmark {
    background-color: rgb(101, 189, 114);
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
  .containerCheck input:checked ~ .checkmark:after {
    display: block;
  }

  div.center{
    margin: auto;
  }

  .center-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  td.pdf {
    margin: 0;
    padding: 0;
  }

  .pdf-btn{
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    color: black;
    padding: 0px;
  }

  .pdf-btn:hover {
    color: rgb(15, 47, 72);
    text-decoration: underline;
    cursor: pointer;
  }


  .btn:hover {
    animation: buttonColor 10000s;
  }

  .btn-delete:hover {
    animation: buttonColorDelete 10000s;
  }

  div.empty {
    width: 100%;
    height: 30px;
  }

  #notice, #note, #items, #data {
    width: 100%;
    height: 150px;
    border: 1px solid rgb(15, 47, 72);
    background-color: transparent;
    color: black;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
  }

  .notice-area {
    width: 300px;
    background-color: transparent;
    color: black;
    border: none;
    padding: 0px 5px 0px 5px;
    font-size: 11px;
    height: 35px;
    font-family: sans-serif;
  }

  .btn,
  .btn-delete,
  .btn-green {
    width: 100%;
    margin: auto;
    display: block;
    background: none;
    color: black;
    padding: 0px;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
    margin: 4px 0;
  }

  .btn{
    border: 2px solid rgb(15, 47, 72);
  }

  .btn-delete{
    border: 2px solid red;
  }

  .btn-green{
    border: 2px solid green;
  }

  textarea:focus {
    outline: none;
  }




  details.odrazka {
    cursor: pointer;
  }

  ul.odrazka {
  margin-left: 20px;
  list-style-type: none;
  }

  a.summary {
  margin-left: 25px;
  }

  details[open] summary::-webkit-details-marker,
  details[open] summary::marker {
  content:  " + ";
  }

  summary::-webkit-details-marker {
  display: none;
  }

  details[open] ul.odrazka {
  animation: animateDown 0.3s forwards;
  }

  .details-menu[open] ~ .remaining-items {
    animation: animateDown 0.3s forwards;
  }

  @keyframes animateDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }




  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                       Left / right side navbar - Mobile                                     */
  /*-------------------------------------------------------------------------------------------------------------*/


  ul.left-side-menu,
  ul.right-side-menu {
    padding: 15px;
    list-style: none;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin: auto;
    font: bold 20px/1.4 'Open Sans', arial, sans-serif;
    color: black;
    position: relative;
    padding-bottom: 0px;
    padding-top: 18px;
    text-align: center;
    left: 0px;
    right: 0px;
  }


  /*--------------------------------- */
  /*              logout             */    
  /*--------------------------------- */    

  ul.logout {
    list-style: none;
    display: flex; /* Zmena na flexbox */
    justify-content: center; /* Vycentrovanie na stred */
    width: 100%;
    text-align: center;
    position: relative;
    top: 40px;
    right: 0px;
    z-index: 100;
  }
  
  li.logout {
    font: bold 20px/1.4 'Open Sans', arial, sans-serif;
    color: black;
    position: relative;
  }
  
  a.logout {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    font: bold 44px/1.4 'Open Sans', arial, sans-serif;
    display: inline;
    position: relative;
  }
  
  a.logout:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    background: rgb(15, 47, 72);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    box-shadow: 1px 1px 2px black;
  }
  

  a.logout:hover:after {
    width: 100%;
    border-radius: 10%;
    left: 0;
  }

  a.logout:hover {
    color: rgb(15, 47, 72);
    text-shadow: 1px 1px 2px black;
  }

  a.contact:link {
    color: rgb(15, 47, 72);
  }

  a.contact:visited {
    color: rgb(15, 47, 72);
  }


/*-------------------------------------------------------------------------------------------------------------*/
/*                                         Mobile Version - Dashboard                                          */
/*-------------------------------------------------------------------------------------------------------------*/

td.dashboard, td.netflix {
  width: 50%;
}

h4.dashboard-titel {
  font-size: 16px;
  padding-bottom: 15px;
  padding-top: 20px;
  margin-left: 15px;
}

p.dashboard-info {
  font-size: 12px;
  margin-left: 30px;
}

.dashboard {
  width: 40px;
  margin-left: 15px;
  margin-top: 30px;
}

svg.dashboard {
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 30%;
  transform: translateY(-50%);
  width: 90pt;
  height: 100pt;
}

h4.dashboard-titel {
  font-size: 36px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15%;
  margin-left: 0; /* Odstránenie ľavého okraja */
  text-align: center; /* Vycentrovanie textu */
}
  


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                Table - Database                                             */
  /*-------------------------------------------------------------------------------------------------------------*/

  table.table-database {
    min-width: max-content;
    z-index: 1;
    width: 100%;
    border: none;
    border-spacing: 0;
    position: sticky;
    top: 55px;
  }

  tr.clickable,
  th.clickable,
  td.clickable {
    cursor: pointer;
  }

  .table-database th,
  .table-database td {
    padding: 0px 5px 0px 5px;
    text-align: left;
    border: 1px solid rgb(15, 47, 72);
  }

  .table-height td,
  .table-height th,
  .table-height tr {
    height: 30px;
    padding: 0px;
  }


  .table-database tr:hover td {
    border-bottom: 1px solid rgb(30, 255, 0) !important;
    border-top: 1px solid rgb(30, 255, 0) !important;
  }


  div.table-box {
    width: 98%;
    position: sticky;
    top: 0px;
    margin: auto;
    color: black;
    font-family: sans-serif;
    font-size: 15px;
    max-width: fit-content;
  }

  div.table-box2 {
    width: 98%;
    top: 0px;
    margin: auto;
    color: black;
    font-family: sans-serif;
    font-size: 15px;
    max-width: fit-content;
  }

  .table-database th {
    background-color: rgb(190, 190, 190);
    color: black;
    z-index: 2;
    position: sticky;
    top: 55px;
    padding: 5px 5px;
  }

  .table-database td {
    padding: 5px;
    text-align: left;
    border: 1px solid rgb(15, 47, 72);
    color: black;
    background-color: white;
    z-index: 1; 
    position: sticky;
    top: 55px;
  }

  .table-database thead th:first-child {
    background-color: rgb(190, 190, 190);
    color: black;
    z-index: 4; 
  }

  .table-database thead th:nth-child(2),
  .table-database thead th:nth-child(3),
  .table-database thead th:nth-child(4) {
    background-color: rgb(190, 190, 190);
    color: black;
    z-index: 3; 
  }

  .table-wrapper th:nth-child(1),
  .table-wrapper td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 90px;
    z-index: 5;
  }

  .table-wrapper th:nth-child(2),
  .table-wrapper td:nth-child(2) {
    position: sticky;
    left: 90px;
    width: 180px;
    z-index: 5;
  }

  .table-wrapper th:nth-child(3),
  .table-wrapper td:nth-child(3) {
    position: sticky;
    left: 270px;
    z-index: 5;
  }

  .table-wrapper-invoices th:nth-child(1),
  .table-wrapper-invoices td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 90px;
    z-index: 2;
  }

  .table-wrapper-invoices th:nth-child(2),
  .table-wrapper-invoices td:nth-child(2) {
    position: sticky;
    left: 90px;
    width: 90px;
    z-index: 2;
  }

  .table-wrapper-invoices th:nth-child(3),
  .table-wrapper-invoices td:nth-child(3) {
    position: sticky;
    left: 180px;
    width: 180px;
    z-index: 2;
  }

  .table-wrapper-invoices th:nth-child(4),
  .table-wrapper-invoices td:nth-child(4) {
    position: sticky;
    left: 360px;
    z-index: 2;
  }


  .table-wrapper-installers th:nth-child(1),
  .table-wrapper-installers td:nth-child(1) {
    position: sticky;
    left: 0;
    width: max-content;
    z-index: 2;
  }

  .table-wrapper-payroll th:nth-child(1),
  .table-wrapper-payroll td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 130px;
    z-index: 4;
  }

  .table-wrapper-payroll th:nth-child(2),
  .table-wrapper-payroll td:nth-child(2) {
    position: sticky;
    left: 130px;
    width: 85px;
    z-index: 4;
  }

  .table-wrapper-payroll th:nth-child(3),
  .table-wrapper-payroll td:nth-child(3) {
    position: sticky;
    left: 215px;
    width: max-content;
    z-index: 4;
  }

  .table-wrapper-cars th:nth-child(1),
  .table-wrapper-cars td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 100px;
    z-index: 4;
  }

  .table-wrapper-cars th:nth-child(2),
  .table-wrapper-cars td:nth-child(2) {
    position: sticky;
    left: 100px;
    width: 120px;
    z-index: 4;
  }

  .table-wrapper-cars th:nth-child(3),
  .table-wrapper-cars td:nth-child(3) {
    position: sticky;
    left: 220px;
    width: max-content;
    z-index: 4;
  }

  .table-wrapper-reclamation th:nth-child(1),
  .table-wrapper-reclamation td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 25px;
    z-index: 2;
  }

  .table-wrapper-reclamation th:nth-child(2),
  .table-wrapper-reclamation td:nth-child(2) {
    position: sticky;
    left: 25px;
    width: 120px;
    z-index: 2;
  }

  .table-wrapper-reclamation th:nth-child(3),
  .table-wrapper-reclamation td:nth-child(3) {
    position: sticky;
    width: 180px;
    left: 145px;
    z-index: 2;
  }

  .table-wrapper-reclamation th:nth-child(4),
  .table-wrapper-reclamation td:nth-child(4) {
    position: sticky;
    width: 120px;
    left: 325px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(1),
  .table-wrapper-installation td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 50px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(2),
  .table-wrapper-installation td:nth-child(2) {
    position: sticky;
    left: 50px;
    width: 95px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(3),
  .table-wrapper-installation td:nth-child(3) {
    position: sticky;
    left: 145px;
    width: 152px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(4),
  .table-wrapper-installation td:nth-child(4) {
    position: sticky;
    width: 84px; 
    left: 297px;
    z-index: 2;
  }

  .table-wrapper-installation th:nth-child(5),
  .table-wrapper-installation td:nth-child(5) {
    position: sticky;
    left: 381px;
    z-index: 2;
  }

  .table-wrapper,
  .table-wrapper-invoices,
  .table-wrapper-installers, 
  .table-wrapper-payroll, 
  .table-wrapper-installation, 
  .table-wrapper-cars, 
  .table-wrapper-reclamation {
    overflow-x: scroll;
    overflow-y: visible;
    height: 100vh;
  }

  .select-status {
    color: white !important;
    background-color: rgb(15, 47, 72);
    border: none;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    font-family: sans-serif;
    font-size: 17px;
  }


  .arrowContainer {
    width: 30px;
    background: none;
    border: none;
  }

  .arrowLine {
    height: 6px;
    width: 30px;
    background-color: rgb(15, 47, 72);
    margin-top: 10px;
    margin-bottom: 10px;
  }

  table.backNext {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    border: none;
    table-layout: auto;
  }



  td.back,
  td.next {
    width: 30px;
    padding: 0;
  }

  td.middle {
    font: 18px sans-serif;
    color: rgb(15, 47, 72);
  }

  button.mybtn-arrow {
    background: none;
    border: none;
    padding: 0;
  }

  .arrowContainer {
    width: 30px;
    background: none;
    cursor: pointer;
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                            Table job_detail                                                 */
  /*-------------------------------------------------------------------------------------------------------------*/

  table.table-job-detail td{
    padding-right: 20px;
    padding-bottom: 5px;
    vertical-align: top;
  }

  td.year_left {
    color:rgb(15, 47, 72);
    padding: 10px 0px 10px 0px;
    font-size: 20px;
    font-weight: 700;
    float: left;
  }

  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                   Profil                                                    */
  /*-------------------------------------------------------------------------------------------------------------*/

  table.profil {
    border-collapse: separate;
    font-family: "Arial", sans-serif;
    font-size: 18px;
    width: 100%;
  }

  td.profil {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    white-space: nowrap;
    width: 60%;
  }

  td.left {
    color: rgb(15, 47, 72);
    font-weight: bold;
    width: 40%;
  }


  a.a-button{
    border: 5px solid;
    border-color: rgb(15, 47, 72);
    border-radius: 10px;
    color: black;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition-duration: 1.5s;
  }

  a.a-button:hover {
    background-color: black;
    color: rgb(15, 47, 72);
    transition-duration: 1s;
    cursor: pointer;
  }

  .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: 1px;
    overflow: hidden; /* Pre vnútorný kruh */
  }

  .circle::before {
    content: attr(data-letter); /* Dynamické priradenie písmena */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 12px; 
    color: var(--data-color);
  }




  @keyframes buttonColor {
    0% {
        background-color: none;
    }
    0.01% {
        background-color: rgb(15, 47, 72);
        color: white
    }
    100% {
        background-color: rgb(15, 47, 72); 
        color: white;
    }
  }


  @keyframes buttonColorDelete {
    0% {
        background-color: none;
    }
    0.01% {
        background-color: red;

    }
    100% {
        background-color: red; 
    }
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                     Finance                                                 */
  /*-------------------------------------------------------------------------------------------------------------*/

  td.finance_left {
    color:rgb(15, 47, 72);
    padding: 10px 0px 10px 0px;
    font-size: 18px;
    font-weight: 700;
    float: left;
  }


  .single-chart {
    width: 50%; 
    justify-content: center;
    align-items: center;
    margin-left: 25%;
  }


  .circular-chart {
    margin: 10px auto;
    max-width: 100%;
    max-height: 250px;
  }

  .circle-bg {
    fill: none;
    stroke: rgb(190, 190, 190);
    stroke-width: 3.8;
  }

  .circle {
    fill: none;
    stroke-width: 3.5;
    animation: progress 3s ease-out forwards;
  }

  .bar-chart {
    margin: 10px auto;
    max-width: 100%;
    max-height: 250px;
  }

  .bar {
    fill: none;
    stroke-width: 14;
    animation: progress 2s ease-out forwards;
  }

  .bar-income {
    stroke: rgb(15, 47, 72);
  }

  .bar-outcome {
    stroke: rgb(225, 0, 0);
  }

  .bar-profit {
    stroke: rgb(101, 189, 114);
  }



  @keyframes progress {
    0% {
      stroke-dasharray: 0 100;
    }
  }



  .circular-chart.lcomplete .circle {
    stroke: rgb(15, 47, 72);
  }

  .circular-chart.green .circle {
    stroke: rgb(101, 189, 114);
  }


  .percentage {
    fill: rgb(15, 47, 72);
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
  }


  div.ring-chart-center {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50%;
  }

  table.ring-chart{
    background: transparent;
    width: 100%;
  }

  td.ring-chart {
    width: 50%;
    height: auto;
  }

  table.bar-chart{
    background: transparent;
    width: 100%;
  }

  td.bar-chart {
    width: 50%;
    height: auto;
  }

  .charts-css {
    list-style: none;
    padding-left: 0;
    width: auto;
  }

  .charts-css li {
    position: relative;
    padding-left: 35px; 
    color: black;
    font-size: 18px;
    margin-bottom: 10px;
    width: auto;
  }

  .charts-css li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  .charts-css li:nth-child(1)::before {
    background-color: rgb(190, 190, 190); 
  }

  .charts-css li:nth-child(2)::before {
    background-color: rgb(15, 47, 72); 
  }

  p.chart{
    color: black;
    font-size: 18px;
  }


  .chart-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
  }

  .line-chart {
    width: 1000px;
    height: 500px;
    position: relative;
  }

  .x-axis {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5px;
    position: absolute;
    bottom: 0;
    width: 94%;
    height: 6%;
    bottom: 0px;
    color: black;
    margin: 0px 0px 0px 6%;
    bottom: -1%; 
  }

  .month {
    flex: 1;
    text-align: center;
  }


  .y-axis {
    position: absolute;
    color: black;
    padding-left: 10px;
    text-align: right;
    float: right;
    width: 5%
  }


  .data-line {
    position: absolute;
    width: 3px;
    transform-origin: top left;
    margin-left: 7px;
    margin-top: 7px;
    z-index: 2;
  }

  .income {
    stroke: rgb(15, 47, 72);
    fill: none;
  }

  .outcame {
    stroke: rgb(190, 190, 190);
    fill: none;
  }

  .pure-chart{
    position: absolute;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    width: 94%;
    height: 90%;
    left: 6%;
    top: 4%;
  }

  .chart-vertical-net{
    width: 1px;
    height: 100%;
    background-color: rgb(255,255,255,0.2);
    position: absolute;
  }


  .chart-horizontal-net{
    width: 100%;
    height: 1px;
    background-color: rgb(255,255,255,0.2);
    position: absolute;
  }


  .data-point-income {
    width: 12px;
    height: 12px;
    position: absolute;
    background-color: white;
    border-radius: 50%;
    cursor: pointer; 
    border: 2px solid rgb(15, 47, 72);
    z-index: 5;
  }

  .point-data-income {
    display: none;
    position: absolute;
    background: white;
    width: auto;
    height: 40px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid rgb(15, 47, 72);
    color: black;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    z-index: 6;
    white-space: nowrap;
    top: -45px;
    left: 12px;
  }

  .data-point-income:hover .point-data-income {
    display: block;
  }

  .data-point-income:hover{
    background-color: rgb(15, 47, 72);
  }

  .data-point-outcome {
    width: 12px;
    height: 12px;
    position: absolute;
    background-color: white;
    border-radius: 50%;
    cursor: pointer; 
    border: 2px solid rgb(225,0,0);
    z-index: 5;
  }

  .point-data-outcome {
    display: none;
    position: absolute;
    background: white;
    width: auto;
    height: 40px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid rgb(225,0,0);
    color: black;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    white-space: nowrap;
    top: -45px;
    left: 12px;
  }

  .data-point-outcome:hover .point-data-outcome {
    display: inline-block;
  }

  .data-point-outcome:hover{
    background-color: rgb(225,0,0);
  }


  .line-chart-legend{
    width: 1000px;
    position: relative;
    margin-left: 6%;
    margin-top: 20px;
  }

  .legend-line{
    height: 5px;
    width: 40px;
    border-radius: 2px;
  }

  td.legend-year{
    padding: 5px 10px 5px 10px;
  }


  .bar-charts-css {
    list-style: none;
    padding-left: 0;
    width: auto;
  }

  .bar-charts-css li {
    position: relative;
    padding-left: 35px; 
    color: black;
    font-size: 18px;
    margin-bottom: 10px;
    width: auto;
  }

  .bar-charts-css li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  .bar-charts-css li:nth-child(1)::before {
    background-color: rgb(15, 47, 72); 
  }

  .bar-charts-css li:nth-child(2)::before {
    background-color: rgb(225, 0, 0); 
  }

  .bar-charts-css li:nth-child(3)::before {
    background-color: rgb(101, 189, 114); 
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                Table summary                                                */
  /*-------------------------------------------------------------------------------------------------------------*/

  .table-summary td{
    padding-right: 20px;
    white-space: nowrap;
  }


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                Color palette                                                */
  /*-------------------------------------------------------------------------------------------------------------*/

  #colorInput,
  #colorInput2 {
    font-size: 16px;
  }

  #colorPalette,
  #colorPalette2 {
    display: none;
    flex-direction: column; /* Zmena usporiadania na stĺpcový */
    position: absolute;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 10px;
    cursor: crosshair;
    align-items: center;
    background-color: white;
  }

  #selectedColor,
  #selectedColor2 {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    border: 1px solid white;
  }

  #confirmButton,
  #confirmButton2 {
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 20px;
    background-color: rgb(15, 47, 72);
    color: white;
    border: none;
    border-radius: 5px;
    position: relative;
    font-size: 14px;
  }

  #blueSlider,
  #blueSlider2 {
    margin-top: 10px;
    background-color: rgb(15, 47, 72);
    appearance: none;
    width: 100%;
  }

  #blueSlider::-webkit-slider-thumb,
  #blueSlider2::-webkit-slider-thumb {
    background-color: rgb(15, 47, 72);
  }

  #blueSlider::-moz-range-thumb,
  #blueSlider2::-moz-range-thumb {
    background-color: rgb(15, 47, 72);
  }

  #blueSlider::-ms-thumb,
  #blueSlider2::-ms-thumb {
    background-color: rgb(15, 47, 72);
  }


  table.payroll {
    border-collapse: collapse;
    width: 100%;
    margin: 20px;
  }

  table.payroll th, table.payroll td {
    border: 2px solid rgb(15, 47, 72);
    padding: 8px;
    text-align: left;
    background-color: white;
  }

  table.payroll th {
    text-align: center;
  }

  /* Dodatočné štýly pre usporiadanie tabuliek vedľa seba */
  .table-payroll-container {
    display: flex;
    justify-content: space-between;
  }

  .payroll td:nth-child(1) {
    width: max-content;
  }

  tr.gray-row td {
    background-color: rgb(220, 220, 220);
  }

  p.percents-text {
    position: absolute;
    bottom: 0;
    right: 0;
    color: red;
    font-size: 12px;
  }

  .box-reclamation {
    flex: 0 0 25%;
  }


  /*--------------------------------- */
  /*           UPLOAD FILE            */    
  /*--------------------------------- */

  div.uploadFile{
    margin-bottom: 20px;
  }


  .uploadFile{
    fill: rgb(15, 47, 72);
    transition: fill 0.5s;
    margin-left: 10px;
    
  }

  .label-uploadFile{
    display: flex;
    padding-right: 15px;
  }


  input.uploadFile {
    position: relative;
    cursor: pointer;
  }

  svg.uploadFile{
    position: relative;
  }

  path.uploadFile{
    fill: rgb(15, 47, 72);
  }

  svg.uploadFile:hover {
    background-image: none;
  }

  .uploadFile:hover path{
    fill:black;
  } 

  .upload{
    fill: rgb(15, 47, 72);
    transition: fill 0.5s;
    width: 50px;
    margin-left: 60px;
  }

  path.upload{
    fill: rgb(15, 47, 72);
  }

  .upload:hover {
    background-image: linear-gradient(135deg, rgb(15, 47, 72) 1%, rgb(15, 20, 22) 80%);
  }

  svg.upload:hover {
    background-image: none;
  }

  .upload:hover path{
    fill:black;
  } 

  .uploadFile::-webkit-file-upload-button {
    border: 2px solid rgb(101, 189, 114);
    color: #ffffff;
    background-color: rgb(15, 47, 72);
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    left: 10px;
    cursor: pointer;
  }

  .overflow {
    max-width: 100px; /* šírka bunky */
    overflow: hidden; /* skryje prebytočný text */
    text-overflow: ellipsis; /* zobrazí trojbodku, ak text presahuje šírku bunky */
    white-space: nowrap; /* zabráni zalamovaniu textu na viacero riadkov */
    
  }

  .overflow:hover {
    max-width: 100%;
    background-color: rgba(210, 210, 210, 0.7);
  }


  .blank-head {
    height: 40px;
    position: sticky;
    top: 0px;
    background-color: #ffffff;
    z-index: 5;
  }

  .dashboard-button {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 100%; /* Roztiahnutie na celú šírku */
    height: 100%; /* Roztiahnutie na celú výšku */
    cursor: pointer;
  }

  table.table-settings {
    min-width: max-content;
    z-index: 1;
    width: 100%;
    border: 1px solid rgb(15, 47, 72);
    border-spacing: 0;
  }

  .table-settings th,
  .table-settings td {
    padding: 0px 5px 0px 5px;
    text-align: left;
    border: 1px solid rgb(15, 47, 72);
  }

  .table-settings th {
    background-color: rgb(190, 190, 190);
    padding: 5px;
  }


  /* Menšie písmo v date pickeri */
  .datepicker,
  .datepicker-dropdown {
    font-size: 14px; /* Nastavenie veľkosti písma */
  }



  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                   Cerebro                                                   */
  /*-------------------------------------------------------------------------------------------------------------*/


  .chat-container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
  }

  .chat-output {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    max-height: 400px;
  }

  .message {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;
    display: block;
    clear: both;
    overflow: hidden; /* Zabezpečí, že animovaný text nevyčnie z rámu */
  }

  /* Animácia postupného písania */
  .message.ai {
    overflow: hidden;
  }

  /* Skrytie vertikálnej posuvnej lišty */
  .message.ai::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    bottom: 100%;
    background: linear-gradient(transparent 60%, rgb(15, 47, 72) 80%); /* Farebný prechod na konci textu */
    animation: typeWriter 5s steps(40) forwards; /* Dĺžka animácie a rýchlosť písania */
  }

  @keyframes typeWriter {
    to {
        bottom: 0;
    }
  }

  .btn-mobile {
    font-size: 2.4vh;
    font-weight: bold;
    padding: 2.5vh 5vw !important;
    border: 4px solid rgb(15, 47, 72);
    color: rgb(15, 47, 72);
    width: 94vw !important;
}


  .user {
    background-color: rgb(101, 189, 114);
    color: #ffffff;
    align-self: flex-end;
    text-align: left;
    float: right;
  }

  .ai {
    background-color: rgb(15, 47, 72);
    color: #ffffff;
    align-self: flex-start;
    text-align: left;
    float: left;
  }

  input.chat[type="text"] {
    width: 100%;
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .chatbtn {
    width: 20%;
    padding: 10px 0;
    background-color: rgb(15, 47, 72);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
  }

  .chatbtn:hover {
    background-color: rgb(101, 189, 114);
  }

  img.logo {
    position: fixed;
    left: 2%;
    top: 65px;
    width: 12%;
  }

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                Transactions                                                 */
/*-------------------------------------------------------------------------------------------------------------*/


table.transaction {
  width: 96%;
  background-color: rgb(15, 47, 72);
}


/*-------------------------------------------------------------------------------------------------------------*/
/*                                                  Language                                                   */
/*-------------------------------------------------------------------------------------------------------------*/

  img.language {
    width: 80px;
  }




  .prev, .next, .prev-pdf, .next-pdf {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 60px;
    user-select: none;
    transform: translateY(-50%);
  }
  
  .prev, .prev-pdf {
    left: 20px;
  }
  
  .next, .next-pdf {
    right: 20px;
  }
  
  .close, .close-pdf {
    position: absolute;
    top: 70px;
    right: 40px;
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
  }

  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  }
  
  .modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px 15px;
    border: 1px solid #888;
    width: auto;
    max-width: 90vw;
    text-align: center;
    font-size: 50px;
  }

  .modal-btn {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 40px;
  }

  .modal-buttons {
    gap: 10%;
  }

  .close-btn {
    font-size: 50px;
  }
}


