/* Základní nastavení pro tělo stránky */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Tlačítko pro otevření panelu (na levé straně) */
.vertical-button {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #f57c00;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

/* Efekt na tlačítku při najetí */
.vertical-button:hover {
  background-color: #ef6c00;
}

/* Text pod ikonou na tlačítku */
.vertical-button .text {
  font-size: 14px;
  margin-top: 5px;
}

/* Vyjíždějící panel */
.side-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background-color: #fff3e0;
  color: #333;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

/* Otevřený panel */
.side-panel.open {
  transform: translateX(0);
}

/* Zavírací tlačítko v panelu */
.close-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: #f57c00;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

/* Ikona v panelu */
.icon-container {
  text-align: center;
  margin-top: 40px;
}

/* Nadpis v panelu */
.lastminute-heading {
  color: #f57c00;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}

/* Tlačítko pro zobrazení nabídky */
.show-offer-button {
  display: block;
  background-color: #f57c00;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  margin: 20px auto;
  width: 80%;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

/* Efekt na tlačítku při najetí */
.show-offer-button:hover {
  background-color: #ef6c00;
}

/* Text pro seznam destinací */
.last-offer-countries {
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}

/* Seznam destinací */
.destinations ul {
  list-style: none;
  padding-left: 0;
}

.destinations li {
  margin: 10px 0;
}

/* Odkazy pro destinace */
.destinations a {
  color: #f57c00;
  text-decoration: none;
  font-weight: 500;
}

/* Efekt na odkazu při najetí */
.destinations a:hover {
  text-decoration: underline;
}

/* Obrázek v panelu */
.side-panel img {
  width: 100%;
  margin-top: 20px;
  border-radius: 4px;
}
