  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-size: 1.6vh;              
      font-family: 'Open Sans', sans-serif;  
    }

    body.dashboard-bgr {
      position: relative;
    }
  
    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
  }

  a {
    text-decoration: none;
    color: initial;
  }
  
  /* fixnuté pozadie */
  body.dashboard-bgr::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-image: url("images/bgr1.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-color: #ffffff;
      opacity: 0.6;
      z-index: -1;
  }



  h1 {
    font-size: 5vh;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    position: absolute;
    top: 4vh;
  }
  
  h2 {
    text-align: center;
    color: rgb(0, 170, 180);
    margin-bottom: 2vh;
    font: bold 3vh/1.4 'Open Sans', arial, sans-serif;
  }

  h3 {
    font-size: 2vh;
  }

  h4 {
    font-size: 1.8vh;
    line-height: 1.4 !important;
  }

  img.logo-image {
    width: 4vw; 
    position: fixed;
    left: 2vw;
    top: 3vh;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

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

  .icon {
    display: flex;
    align-items: center;
    margin-right: 0.5vw;
  }

  canvas.signature-box {
    width: 25vw;
    border: 3px solid rgb(0, 170, 180);
    border-radius: 1vh;
    aspect-ratio: 1.618 / 1;
  }

  /*--------------------------------- */
  /*               ROUTES             */    
  /*--------------------------------- */

  .drag-layout {
    display: flex;
    gap: 4vw;
    margin-top: 3vh;
    flex-wrap: wrap;
}

.drag-column {
    flex: 1;
    min-width: 300px;
}

.drag-box {
  border: 2px dashed #ccc;
  max-height: 80vh;
  min-height: 80vh;
  overflow-y: auto;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.drag-item {
  background: white;
  border: 1px solid #ccc;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: grab;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}


.drag-item:active {
    cursor: grabbing;
}

.hint {
    color: #999;
    font-style: italic;
}


  /*--------------------------------- */
  /*          corner-buttons          */    
  /*--------------------------------- */

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

  ul.corner-button li {
    background-color: rgb(135, 220, 225);
    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(135, 220, 225);
  }

  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;
    transition: filter 0.3s ease; 
  }

  ul.corner-button li:hover button {
    cursor: pointer;
  }

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

  li.corner-button:hover .corner-button-icon {
    filter: brightness(0) saturate(100%) invert(100%) grayscale(0);
  }

  .corner-button a {
    text-decoration: none;
  }

  .cart-badge {
    background-color: black;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    text-align: center;
    margin-left: 0.5em;
    transform: translateX(-1px);
    padding-left: 1px;
  }
  

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                      Shop                                                   */
/*-------------------------------------------------------------------------------------------------------------*/

.related-card {
  width: 220px;
  text-align: center;
  padding: 1vh;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fafafa;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.related-card:hover {
  transform: scale(1.03);
  background-color: #f0f8fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.shop-container {
  display: flex;
  gap: 4vw;
  padding: 4vh 4vw;
}

.shop-categories {
  width: 370px;
  border-right: 1px solid #ccc;
  padding-right: 2vw;
  padding-left: 1vw;
}

.shop-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-categories li {
  line-height: 1.8;
}

.shop-categories li a {
  line-height: 2;
  font-size: 2.2vh;
  font-weight: normal;
}

.shop-categories a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.shop-categories a:hover {
  color: #008fa3;
}

.shop-products {
  flex: 1;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vh 2vw;
}

.product-card {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  padding: 1vh 1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 380px;
}

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-info img {
  height: 200px;
  object-fit: contain;
}

.product-info h4 {
  font-size: 1rem;
  font-weight: bold;
  margin: 1vh 0 0;
  color: rgb(53, 170, 181);
  min-height: 3.8em; /* výška na 2 riadky */
  line-height: 1.2em;
  display: flex;
  align-items: center;
  text-align: center;
}

.product-info p {
  margin: 0.5vh 0;
  font-weight: bold;
  min-height: 2em;
}

.product-form {
  margin-top: auto;
}

.button-shop {
  background-color: rgb(53, 170, 181);
  color: white;
  padding: 1vh;
  font-size: 1.4vh;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.button-shop:hover {
  background-color: white;
  color: rgb(53, 170, 181);
}


.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
  transition: border 0.3s ease;
  cursor: pointer;

  /* TOTO je kľúčové pre zarovnanie */
  transform: translateY(1px);
}

.radio-option input[type="radio"]:checked {
  border-color: rgb(53, 170, 181);
}

.radio-option input[type="radio"]::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: rgb(53, 170, 181);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.radio-option input[type="radio"]:checked::before {
  transform: scale(1);
}

.radio-option label {
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}



  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                 Permissions                                                 */
  /*-------------------------------------------------------------------------------------------------------------*/

  .permission-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.permission-list li {
    background-color: #e8f0fe;
    color: #0b5394;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #c6dafc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.permission-list a {
  text-decoration: none;
  color: #0b5394;
}


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                               Flash messages                                                */
  /*-------------------------------------------------------------------------------------------------------------*/

  .flash-messages {
    max-width: 600px;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #fff8c6;
    border: 1px solid #f1c40f;
    color: #6a5400;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    list-style: none;
}


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

  .dashboard-table-wrapper {
    overflow-y: auto;
    max-width: 85vw;
    margin: 0 auto 5vh auto;
  }
  
  .dashboard-table {
    max-width: 100%;
    min-width: 85vw;
    margin: 0 auto; /* centrovanie */
    border-collapse: separate;
    border-spacing: 1vw;
    text-align: center;
    display: table;
    margin-bottom: 5vh;
  }
  
  .dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    justify-content: center;
}

.dashboard-grid .dashboard {
    width: 20vw;
    height: 25vh;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.dashboard-grid .dashboard:hover {
    transform: scale(1.05);
}


.item-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1vh;
  backdrop-filter: blur(10px);
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.dashboard-grid .dashboard:hover .item-card {
  opacity: 1;
}



.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vh 2vw;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 1.5;
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.product-card:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.product-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product-details {
  height: 34%;
  padding: 1vh 1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 1.8vh;
  font-weight: bold;
  margin: 0.3vh 0;
  white-space: wrap;
  color: rgb(0, 160, 165);
  z-index: 200;
}

.product-price {
  margin: 0.3vh 0;
  color: rgb(135, 220, 225);
  font-weight: bold;
}

.product-description {
  font-size: 0.85rem;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.button.full-width {
  padding: 0.7vh 1vw;
  font-size: 1rem;
  width: 100%;
  border-radius: 6px;
  margin-top: auto;
}




  .dashboard-table td {
    width: 20vw !important;
    max-width: 20vw !important;
    height: 25vh;
    background-color: rgb(135, 220, 225);
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.3s;
    text-align: center;
  }

  .dashboard-table td:hover {
    transform: scale(1.08);
    background-image: linear-gradient(135deg, rgb(135, 220, 225) 10%, rgb(0, 170, 180) 80%);
  }

  .dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: auto;
    color: white;
  }

  .dashboard-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1vw;
    overflow: hidden;
    white-space: wrap;
  }

  .dashboard-icon {
    height: 6vh;
    transition: filter 0.3s ease;
  }


  .dashboard-table td .dashboard-icon {
    filter: brightness(1);
  }


  .dashboard-table td:hover .dashboard-icon {
    filter: brightness(0) invert(1);
  }

  .dashboard-title {
    font-size: 2vh;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1vh;
    transition: color 0.3s, background-color 0.3s;
    padding: 0.5vh 1vw;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4vh;
    line-height: 4vh;
  }

  .dashboard-table td:hover .dashboard-title {
    color: rgb(135, 220, 225);
    background-color: white;
  }

  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                  Circle                                                     */
  /*-------------------------------------------------------------------------------------------------------------*/

  div.flex-container {
    display: flex;
    gap: 0.5vw;
  }

  div.circle {
    width: 2vh;
    height: 2vh;
    border-radius: 1vh;
  }

  .green {
    background-color: green;
  }

  .red {
    background-color: red;
  }

  
  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                  Center                                                     */
  /*-------------------------------------------------------------------------------------------------------------*/

  div.center {
    display: flex;
    align-items: center;
    justify-content: center;
  }

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


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                EKD - Input                                                  */
  /*-------------------------------------------------------------------------------------------------------------*/

  input.ekd-input {
    background-color: rgb(135, 220, 225, 0.5);
    border-radius: 8px;
    height: 3vh;
    border: none;
    position: absolute;
    color: #000;
    font-size: 1.4vh;
    font-family: 'Open Sans', sans-serif;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    transition: background-color 0.5s ease, border-color 0.5s ease;
  }

  input.ekd-input:focus {
    outline: none;
    border: 2px solid rgb(0, 170, 180);
    box-shadow: 0 0 5px rgba(135, 220, 225, 0.8);
  }

  input.ekd-input:hover {
    background-color: rgba(135, 220, 225, 0.7);
    border-color: rgb(0, 170, 180);
  }

  input[type="time"] {
    padding: 1vh;
    font-size: 1.6vh;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: rgb(0, 170, 180);
    border: 2px solid rgba(135, 220, 225, 0.7);
    border-radius: 1vh;
    outline: none;
    transition: border-color 0.5s, background-color 0.5s;
    text-align: center;
    width: 100px; /* nastavíš explicitne, 8ch niekedy nestačí */
    box-sizing: border-box; /* zabezpečí, že padding nezväčší input */
    appearance: none; /* pre niektoré prehliadače */
  }
  
  /* Zrušiť natívnu "clock" ikonu na Edge/Chrome */
  input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }
  
  input[type="time"]:focus {
    border-color: rgba(135, 220, 225, 0.4);
    background-color: rgba(135, 220, 225, 0.7);
  }
  


  /*-------------------------------------------------------------------------------------------------------------*/
  /*                                                Containers                                                   */
  /*-------------------------------------------------------------------------------------------------------------*/

  .standard-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 35px;
    border: 3px solid rgb(0, 170, 180);
    border-radius: 12px;
    max-height: 96vh;           
    overflow: hidden;           
    display: flex;
    flex-direction: column;
  }
  
  /* Pre WebKit prehliadače (Chrome, Safari) */
  .standard-container::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }
  


  div.empty {
    width: 100%;
  }

/*------------------------------------------------------------------------------------------------------------*/
/*                                                 Buttons                                                     */
/*-------------------------------------------------------------------------------------------------------------*/

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

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

.btn-danger {
  background: #d9534f;
  color: white;
}

.btn-danger:hover {
  background: #c9302c;
}

.btn-cancel {
  background: #5a6268;
  color: white;
}

.btn-cancel:hover {
  background: #444b50;
}
    
.button {
  background: none;
  border: 2px solid rgb(0, 170, 180);
  border-radius: 10px;
  font: 18px/1.4 'Open Sans', arial, sans-serif;
  color: rgb(135, 220, 225);
  padding: 1vh 2vw;
  transition: background-color 1.2s ease, color 1.2s ease;
  cursor: pointer;
  width: auto;
}

.button:hover {
  background-color: rgb(135, 220, 225);
  color: #ffffff;
}

.button-image {
  border: none; 
  background-color: transparent; 
  cursor: pointer; 
  padding: 10px;
  transition: background-color 0.5s ease;
  position: relative;
  border-radius: 8px;
}

.button-icon {
  width: 2.5vw;
  height: 2.5vh;
  transition: transform 0.5s ease, opacity 0.5s ease; 
  opacity: 0.8; 
}

.button-icon:hover {
  transform: scale(1.1); 
  opacity: 1; 
}

.btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.left-btn {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.right-btn {
  display: flex;
  justify-content: flex-end;
}

.a-btn, .delete-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.delete-button {
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1.4vh;
  font-weight: bold;
  cursor: pointer;
  padding: 1.2vh 1vw;
  transition: background-color 0.3s ease, transform 0.3s;
  display: flex;
  align-items: center;
}

.delete-button:hover {
  background-color: #c9302c;
  transform: scale(1.1);
}


.delete-button .icon svg {
  fill: white;
  margin-right: 0.5vw;
  vertical-align: middle;
}

.delete-button .text,
.create-button .text {
  vertical-align: middle;
}

.text {
  display: flex;
  align-items: center; 
}

.create-button {
  background-color: rgb(0, 170, 180);
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s ease;
  padding: 1.2vh 1vw;
  display: flex;
  align-items: center;
}

.create-button:hover {
  transform: scale(1.1);
  background-color: rgb(135, 220, 225);
}

.message {
  width: auto;
  margin-top: 1vh;
  width: auto;
  display: flex; 
  justify-content: center;
}

.transparent-btn {
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: white;
}


/*-------------------------------------------------------------------------------------------------------------*/
/*                                                 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: #666;
  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: white;
  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(80, 230, 80); 
}

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

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

.toggle-container2 {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  user-select: none;
  justify-content: center; 
  width: 100%;
}

.toggle-label2 {
  margin: 0 10px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

.toggle-switch2 {
  position: relative;
  width: 3vw;
  height: 2.1vh;
  background: #ddd;
  border-radius: 15px;
  cursor: pointer;
}

.toggle-switch2 input {
  display: none;
}

.toggle-slider2 {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 1.6vh;
  height: 1.6vh;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch2[data-state="nein"] {
  background: rgb(0, 170, 180);
}
.toggle-switch2[data-state="neutral"] {
  background: #bbb;
}
.toggle-switch2[data-state="ja"] {
  background: rgb(80, 230, 80);
}

.toggle-switch2[data-state="neutral"] .toggle-slider2 {
  left: 50%;
  transform: translate(-50%, -50%);
}

.toggle-switch2[data-state="ja"] .toggle-slider2 {
  left: 2vw;
}


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


.table-database {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 2vh 0;
  font-size: 0.9em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table headers */
.table-database th {
  background-color: rgb(0, 170, 180);
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  position: sticky;
  z-index: 20;
  top: 0;
}

.table-database th:nth-child(1) {
  z-index: 100;
}

.table-database thead {
  background-color: rgb(0, 170, 180);
}

/* Table cells */
.table-database td {
  text-align: left;
  padding: 1vh;
  line-height: 1.4;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
  background-color: #ffffff;
}

/* Striped rows */
.table-database tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.table-database tbody tr {
  transition: background-color 0.3s ease;
}

/* Hover effect for rows */
.table-database tbody tr:hover {
  background-color: rgb(0, 170, 180, 0.2);
}

.table-database-wrapper {
  overflow: scroll;
}

td.sub-th {
  background-color: rgb(0, 170, 180, 0.75);
  color: white;
  font-size: 1.8vh;
  font-weight: bold;
}

.svg-icon {
  width: 1.2vw; 
  height: 2.5vh;
  fill: rgb(0, 170, 180); 
  transition: fill 0.3s ease, transform 0.2s; 
  cursor: pointer;
}

.svg-icon:hover {
  fill: rgb(135, 220, 225); 
  transform: scale(1.08);
}

.description-photo {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  text-align: left;
  padding: 10px;
}

/* Icon */
.show-image {
  width: 1vw; 
  height: 2vh;
  fill: rgb(0, 170, 180);
  transition: fill 0.3s ease, transform 0.2s;
  cursor: pointer;
  margin-left: 0.5vw;
  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ý */
  width: auto;
  height: 40vh;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: rgb(250, 200, 150);
  padding: 0.3vh;
  z-index: 500;
}

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


.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.profil, .edit-table td.profil2 {
  background-color: rgba(0, 170, 180, 0.1); 
  font-weight: bold;
}

.edit-table input.myInput, .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, .myInput {
  border-color: rgb(0, 170, 180); 
  outline: none; 
}


.edit-table textarea.myTextarea, .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, .myTextarea:focus {
  border-color: rgb(0, 170, 180);
  outline: none;
}


.edit-table .textbox {
  position: relative;
}

.standard-container {
  overflow-x: scroll;
  overflow-y: visible;
  margin-left: 2vw;
  margin-right: 2vw;
  padding: 3vh 2vw
}

.scroll-left {
  overflow-x: scroll;
  overflow-y: visible;
  height: 100vh;
}


/*-------------------------------------------------------------------------------------------------------------*/
/*                                                  Base                                                       */
/*-------------------------------------------------------------------------------------------------------------*/

.top-info-bar {
  background-color: rgb(53, 170, 181);
  color: white;
  padding: 0 2vw;
  font-size: 0.9rem;
  text-align: center;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.main-nav {
  position: fixed;
  top: 50px; /* výška top-info-bar */
  left: 0;
  right: 0;
  z-index: 999;
  background-color: white;
  padding: 2.5vh 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-content {
  padding-top: 35vh; /* výška infopanelu + navigácie */
}

.main-footer {
  background-color: rgb(53, 170, 181);
  color: white;
  padding: 6vh 4vw 4vh 4vw;
  margin-top: auto;
}

.main-footer a {
  color: white;
  text-decoration: none;
}

.main-footer h3 {
  font-size: 24px;
  margin-bottom: 1vh;
}

.main-footer p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer ul li {
  margin-bottom: 0.5vh;
}

.main-footer img {
  height: 112px;
  width: 112px;
  max-width: 112px;
}

.main-footer-bottom {
  border-top: 1px solid white;
  margin-top: 2vh;
  padding-top: 1vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.main-footer-bottom a img {
  height: 20px;
}

.pagination-container::-webkit-scrollbar {
  height: 8px;
}
.pagination-container::-webkit-scrollbar-thumb {
  background-color: rgb(53, 170, 181);
  border-radius: 4px;
}
.pagination-container::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}


.pagination-container {
    margin-top: 2vh;
    text-align: center;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 5px 5px;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-width: 30vw;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

.pagination-container a.button {
    display: inline-block;
    margin: 0 3px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1;
    height: 32px;
    vertical-align: middle;
}

.pagination-container .button.active {
    background-color: rgb(53, 170, 181);
    color: white;
}





/*-------------------------------------------------------------------------------------------------------------*/
/*                                                  Košík                                                      */
/*-------------------------------------------------------------------------------------------------------------*/

/* Košík - hlavné obalenie */
.cart-container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 62.5vw;
  margin-top: 10vh;
}

/* Nadpis */
.cart-heading {
  font-size: 3vh;
  font-weight: 500;
  margin-bottom: 4vh;
  text-align: left;
  color: black;
}

/* Tabuľka košíka */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 5vh;
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.cart-table th, .cart-table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.cart-table td {
  font-size: 1.8vh;
}

.cart-table th {
  background-color: rgb(250, 250, 250);
  font-weight: 600;
  font-size: 1.9vh;
}

/* Informácie o produkte */
.product-info-cart {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-image-cart {
  width: 8vh;
  height: auto;
  border: none;
  border-radius: 4px;
}

.cart-refresh {
  padding: 1.5vh 1.5vw;
  width: fit-content;
  background-color: rgb(53, 170, 181);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border: none;
  color: white;
}

.cart-refresh:hover {
  opacity: 1;
}

.product-name {
  font-size: 16px;
}

/* Vstup pre množstvo */
.quantity-input {
  width: 60px;
  padding: 6px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Tlačidlo na odstránenie */
.remove-button {
  background-color: transparent;
  color: black;
  border: 1px solid black;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.remove-button:hover {
  opacity: 1;
}

.table-summary td {
  padding: 2vh 2vw;
  border: none;
}

.table-summary tbody tr:nth-child(1),
.table-summary tbody tr:nth-child(2),
.table-summary tbody tr:nth-child(3) {
  position: relative;
}

.table-summary tbody tr:nth-child(1)::after,
.table-summary tbody tr:nth-child(2)::after,
.table-summary tbody tr:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background-color: #f0f0f0;
}



.update-button {
  background-color: #d0d0d0;
  color: #000;
  margin-top: 14px;
  margin-bottom: 10px;
  width: 100%;
}

.checkout-link {
  text-decoration: none;
  width: 100%;
  display: block;
}

.checkout-button {
  background-color: rgb(53, 170, 181);
  color: white;
  font-weight: bold;
  border-radius: 0;
  width: 100%;
  padding: 2vh;
  font-size: 2vh;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                 Checkout                                                    */
/*-------------------------------------------------------------------------------------------------------------*/

.checkout-container {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  padding: 6vh 4vw;
  flex-wrap: wrap;
}

.checkout-left, .checkout-right {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.checkout-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 3vh;
  color: black;
  text-align: left;
}

.checkout-grid {
  display: flex;
  gap: 2vw;
  margin-bottom: 2vh;
}

.checkout-field, .checkout-field-full {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2vh;
}

.checkout-field-full label,
.checkout-field label {
  font-weight: 500;
  margin-bottom: 0.5vh;
}

.checkout-static {
  font-weight: bold;
  margin-bottom: 1vh;
}

.checkout-checkbox {
  margin: 1vh 0 2vh;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.checkout-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.checkout-payment {
  margin-top: 3vh;
  font-size: 15px;
}

.checkout-payment-note {
  background-color: #f7f7f7;
  padding: 12px;
  padding-left: 10px !important;
  padding-right: 14px !important;
  margin: 1vh 0 2vh;
  font-size: 14px;
  border-left: 4px solid #36a8af;
}

.checkout-privacy {
  font-size: 13px;
  color: #555;
  margin-top: 1.5vh;
}

.checkout-privacy a {
  text-decoration: underline;
  color: #222;
}

.checkout-button {
  background-color: #36a8af;
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 3vh;
  width: 100%;
}

.checkout-button:hover {
  background-color: #2f97a0;
}

.table-summary {
  width: 100%;
  margin-top: 2vh;
  border-collapse: collapse;
  font-size: 15px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
}

.table-summary th, .table-summary td {
  padding: 12px 10px;
  text-align: left;
}

.table-summary tbody tr:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #f0f0f0;
  width: 90%;
  margin: 0 auto;
}

.table-summary .total {
  font-weight: bold;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.account-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 4vh auto;
  padding: 2vh 2vw;
  border: 1px solid #1eacb6;
  border-radius: 10px;
  background-color: #fff;
}

.account-form label {
  font-weight: 500;
  margin-top: 1.5vh;
  margin-bottom: 0.5vh;
  display: block;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"] {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.account-form input[type="checkbox"] {
  margin-right: 8px;
}

.account-form .form-actions {
  margin-top: 3vh;
  display: flex;
  justify-content: flex-end;
}

.account-form .form-actions .button {
  background-color: rgb(53, 170, 181);
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

.account-form .form-actions .button:hover {
  background-color: rgb(45, 155, 165);
}

.my-orders {
  max-width: 1000px;
  margin: 4vh auto;
  padding: 2vh 2vw;
}

.my-orders h2 {
  margin-bottom: 2vh;
}

.color-hover {
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.3s ease;
}
.color-hover:hover {
  color: rgb(0, 170, 180);
}




/*-------------------------------------------------------------------------------------------------------------*/
/*                                                  Select                                                     */
/*-------------------------------------------------------------------------------------------------------------*/
  

.diamant-select {
  width: 100%; 
  padding: 0.8vh 0.5vw;
  font-size: 1.6vh;
  font-family: 'Open Sans', sans-serif;
  background-color: rgba(0, 170, 180, 0.5);
  border-radius: 1vh;
  border: 2px solid transparent;  
  color: #000;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.5s ease, border-color 0.5s ease;
  display: flex;
  height: 100%;
  box-sizing: border-box;
}

.diamant-select:hover {
  background-color: rgba(135, 220, 225, 0.7);
  border-color: rgb(0, 170, 180);
}

.diamant-select:focus {
  outline: none;
  border: 2px solid rgb(0, 170, 180); 
  box-shadow: 0 0 5px rgba(135, 220, 225, 0.8);
}


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

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

/* Modal Box */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 300px;
}

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

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

form {
  display: flex;
  justify-content: center;
  align-items: center;     
  height: 100vh;          
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                 Photo-gallery                                               */
/*-------------------------------------------------------------------------------------------------------------*/


.photo-gallery {
  display: flex;
  overflow-x: auto;
  gap: 0.5vw;  
  padding: 1vh 0;
  margin: 0;
  justify-content: flex-start;
  max-width: 20vw;
}

.img-gallery {
  width: 6vw;
  height: 6vw;
  object-fit: cover;  
  border-radius: 0.8vh;  
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.img-gallery:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.photo-item {
  position: relative;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 1.5vh;
  right: 1vw;
  font-size: 4vh;
  color: white;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  font-size: 4vh;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
}

.left {
  left: 1vw;
  font-weight: bold;
}

.right {
  right: 1vw;
  font-weight: bold;
}


.delete-btn {
  position: absolute;
  top: 0.5vh;
  right: 0.25vw;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10; 
}

.delete-btn img {
  width: 1.2vw;
  height: 1.2vw;
}


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

.modal-content {
  position: relative;
  background-color: white;
  padding: 2vw;
  border-radius: 1vh;
  width: auto;  
  height: auto; 
  text-align: center;
  z-index: 1001;
}

.modal .btn {
  margin: 1vh;
  padding: 1vh 1vw;
  cursor: pointer;
}

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

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

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


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


.upload-area {
  width: 100%;
  height: 10vh;
  border: 2px dashed rgb(0, 170, 180);
  border-radius: 1vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ccc;
  font-weight: normal;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  padding: 1vh 1vw;
  overflow: hidden;
  overflow-y: scroll;
  min-width: 15vw;
}

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

.upload-area::before {
  content: "Nahrať súbor";
  color: #ccc;
  font-size: 1.6vh;
  pointer-events: none;
}


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


#file-list, .file-list {
  margin-top: 1vh;
  width: 100%;
  text-align: left;
}

.file-item {
  background-color: #f0f0f0;
  margin: 0.5vh 0;
  padding: 0.5vh 0.25vw;
  border-radius: 0.5vh;
}

.table-wrapper th:nth-child(1),
.table-wrapper td:nth-child(1) {
  position: sticky;
  left: 0;
}

.table-wrapper {
  max-width: 100%; 
  overflow: scroll;
}


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

@media (max-width:1100px) and (orientation: portrait) {

  * {
    font-size: 2vh;
  }

  html, body {
    height: 100%;
    min-height: -webkit-fill-available; 
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  body.dashboard-bgr {
      overflow: hidden; 
  }

  body.dashboard-bgr::before {
      min-height: -webkit-fill-available;
  }

  img.logo-image {
    width: 30vw; 
    left: 4vw;
    top: 2vh;
  }

  input.ekd-input {
    height: 5vh;
    font-size: 2vh;
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .button {
    font-size: 2vh;
  }

  .dashboard-table {
    width: 96vw;
    margin: 10vh 5vw;
    border-spacing: 2vw;
  }

  .dashboard-table td {
    width: 47vw;
    height: 20vh;
  }

  .dashboard-title {
    font-size: 1.8vh;
  }

  ul.logout, ul.backwards {
    top: 1vh;
    right: 4vw;
    padding: 1vh 1.5vw;
    border-radius: 2vh;
  }

  ul.backwards {
    padding: 1vh 1vw;
  }

  a.logout, a.backwards {
    color: white;
    font: bold 1.8vh/1.4 'Open Sans', arial, sans-serif;
    padding: 10px 15px;
  }

  .logout-icon {
    width: 2vh;
    height: 2vh;
  }

  .backwards-icon {
    width: 2vh;
    height: 2vh;
  }

  .svg-icon {
    width: 5vw; 
    height: 5vh;
  }

  thead {
    background-color: rgb(0, 170, 180);
  }

  .standard-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2vh 4vw !important;
    border-radius: 12px;
    max-height: 74vh;
    margin-top: -6vh;
    border: 3px solid rgb(0, 170, 180);
    min-width: 96vw;
  }

  h3 {
    font-size: 2.5vh;
  }

  table.edit-table {
    max-width: 100%;
  }
  
  .edit-table input.myInput, .myInput {
    padding: 1vh 2vw;
    font-size: 2vh;
    line-height: 2vh;
    letter-spacing: 0;
  }

  .edit-table td {
    padding: 1.5vh 2vw;
  }
  
  .edit-table textarea.myTextarea, .myTextarea {
    min-height: 220px;
  }

  .toggle-container {
    gap: 10px;
    font-size: 2vh;
  }
  
  .toggle-switch {
    width: 12vw;
    height: 2.5vh;
  }
  
  .toggle-slider {
    width: 100%;
    height: 100%;
    border-radius: 2vh;
  }
  
  .toggle-slider::before {
    height: 2vh;
    width: 2vh;
    left: 0.5vw;
  }

  .toggle-switch input:checked + .toggle-slider::before {
    transform: translate(7.0vw, 50%);
    background-color: white;
  }
  
  .toggle-switch2 {
    width: 15vw;
    height: 2.5vh;
    border-radius: 1.5vh;
  }
  
  .toggle-switch2 input {
    display: none;
  }
  
  .toggle-slider2 {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 2vh;
    height: 2vh;
    background: white;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .toggle-switch2[data-state="nein"] {
    background: rgb(0, 170, 180);
  }
  .toggle-switch2[data-state="neutral"] {
    background: #bbb;
  }
  .toggle-switch2[data-state="ja"] {
    background: rgb(80, 230, 80);
  }
  
  .toggle-switch2[data-state="neutral"] .toggle-slider2 {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .toggle-switch2[data-state="ja"] .toggle-slider2 {
    left: 10.4vw;
  }

  .toggle-label2 {
    font-size: 2vh;
  }

  .diamant-select {
    font-size: 2vh;
    padding: 0.8vh 2vw;
  }

  input[type="time"] {
    font-size: 2vh;
  }

  canvas.signature-box {
    width: 80vw;
  }

  .dashboard-content {
    padding: 2vw;
  }

  .create-button {
    padding: 1.2vh 3vw;
  }

  .icon {
    margin-right: 2vw !important;
  }

  .button {
    padding: 2vh 2vw;
    font-size: 2.2vh;
    font-weight: bold;
    border: 4px solid rgb(0, 170, 180);
  }

  td.sub-th {
    font-size: 2.2vh;
    padding-left: 2vw;
  }

  input[type="time"] {
    width: auto;
  }

  .show-image {
    width: 4vw; 
    height: 2vh;
    fill: rgb(0, 170, 180);
    transition: fill 0.3s ease, transform 0.2s;
    cursor: pointer;
    margin-left: 0.5vw;
    display: inline-block;
    vertical-align: middle; /* Zarovnanie ikony k textu */
  }

  .img-gallery {
    width: 10vh;
    height: 10vh;
  }

  .close-btn {
    top: 2vh;
    right: 3vw;
    font-weight: bold;
  }
  
  .nav-btn {
    font-size: 5vh;
    font-weight: bold;
  }
  
  .left {
    left: 3vw;
    font-weight: bold;
  }
  
  .right {
    right: 3vw;
    font-weight: bold;
  }

  .lightbox-img {
    max-width: 75%;
    max-height: 75%;
  }

  .delete-btn img {
    width: 5vw;
    height: 5vw;
  }

  .modal-content {
    min-width: 90vw;
    padding: 3vh 4vw;
    border-radius: 1vh;
    white-space: wrap;
  }

  .modal-content p, .btn-confirm, .btn-cancel {
    font-size: 2.2vh;
  }

  .btn-confirm, .btn-cancel {
    padding: 1vh 4vw !important;
  }

  .close-btn2 {
    top: 0;
    right: 2vw;
    font-size: 3vh;
  }

}