/* Globální box-sizing */
    *, *::before, *::after {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow-x: hidden;
      background-color: #fff;
      font-family: Arial, sans-serif;
    }

    body {
      overflow-x: hidden;
    }

    /* Tlačítko vlevo */
	.vertical-button {
 	 position: fixed;
  	top: 80%;
  	left: 0;
  	transform: translateY(-50%);
  	cursor: pointer;
  	border-radius: 0 10px 10px 0;
  	background: transparent;
  	border: 2px solid #cc0000;
  	z-index: 9999999; /* Extra vysoký z-index pro tlačítko */
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	width: 60px;
  	height: 210px;
  	transition: opacity 0.3s ease;
}

    .vertical-button .target {
      color: #cc0000;
      font-size: 32px;
      margin-bottom: 8px;
    }

    .vertical-button .text {
      background: #cc0000;
      writing-mode: vertical-rl;
      color: white;
      padding: 10px 14px;
      font-weight: bold;
      font-size: 24px;
	  letter-spacing: 2px;
      border-radius: 0 0 10px 0;
      user-select: none;
      text-align: center;
      line-height: 1.2;
    }

    .vertical-button.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Vyjíždějící panel */
.side-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: #cc0000;
  color: white;
  padding: 20px;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999999; /* Extra vysoký z-index pro panel */
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
    .side-panel.open {
      transform: translateX(0);
      opacity: 1;
    }

    .side-panel .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: transparent;
      color: #fff;
      border: none;
      font-size: 24px;
      border-radius: 4px;
      width: 32px;
      height: 32px;
      cursor: pointer;
      user-select: none;
      line-height: 24px;
      text-align: center;
      padding: 0;
    }

    /* Ikona nad nadpisem */
    .side-panel .icon-container {
      text-align: center;
      margin-bottom: 15px; /* Mezera mezi ikonou a nadpisem */
      margin-top: 50px;
    }

    .side-panel i {
      font-size: 50px;
      color: white;
    }

    /* Resetování marginů pro nadpisy */
    .side-panel h2 {
      margin-top: 15px; /* Normalizované odsazení pro nadpis */
      margin-bottom: 5px;
      text-align: center;
    }

    /* Upravíme text na nadpis */
    .last-offer-countries {
      margin-top: 20px; /* Odsazení od vrchu */
      margin-bottom: 10px;
      font-size: 20px;
      font-weight: bold;
      color: white;
    }

    /* Resetování odsazení pro p a seznamy */
    p, .destinations {
      margin: 0;
      padding: 0;
    }

    /* Zajištění, aby byly seznamy s nulovým odsazením */
    .destinations ul {
      list-style-type: none;
      padding-left: 0;
      margin: 0;
    }

    .destinations li {
      margin: 5px 0; /* Standardní mezera mezi jednotlivými destinacemi */
    }

    .destinations a {
      text-decoration: none;
      color: white;
      font-size: 18px;
      font-weight: bold;
      display: flex;
      align-items: center;
    }

    .destinations a i {
      margin-right: 10px;
      font-size: 22px;
    }

    /* Styl pro odkazy při najetí */
    .destinations a:hover {
      color: #cc0000;
      text-decoration: underline;
    }

    /* Tlačítko pro zobrazení nabídky */
    .show-offer-button {
      background-color: #ffef00;
      color: black;
      border: none;
      font-size: 18px;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      align-self: center;
      margin-top: 35px; /* Mezera mezi tlačítkem a destinacemi */
      margin-bottom: 65px; /* Mezera mezi tlačítkem a obrázkem */
    }

    .show-offer-button:hover {
      background-color: white;
    }

    /* Styl pro obrázek ve spodní části */
    .side-panel img {
      width: 100%;
      height: 250px; /* Minimální výška obrázku */
      object-fit: cover;
      margin-top: auto; /* Posune obrázek úplně dolů */
      border-radius: 10px;
    }

    /* Responsivní úpravy pro mobilní zařízení */
    @media (max-width: 600px) {
      .vertical-button {
        width: 50px;
        height: 160px;
      }

      .vertical-button .target {
        font-size: 24px;
      }

      .vertical-button .text {
        font-size: 18px;
      }

      .side-panel {
        width: 250px;
      }

      .last-offer-countries {
        margin-top: 20px; /* Odsazení od vrchu */
        margin-bottom: 10px; /* Můžete upravit podle potřeby */
      }


      .destinations a {
        font-size: 16px;
      }
    }