#button {
  height: 2.0vw;
  background: -webkit-linear-gradient(top, #bb2323 0%, #ff0000 100%);
  border: none;
  font-size: 0.9vw;
  color: #ddd;
  padding-left: 8px;
  padding-right: 8px;
}

iframe {
  display: block;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-wrap: wrap;
  padding: 0;

  margin: 0px;
  background: #333;
}



.wrapper {
  display: grid;
  grid-template-areas:
    'small-video navigation'
    'small-video big-video'
    '. big-video'
    'left-column right-column';
  grid-template-columns: 26vw 1fr;
  grid-auto-rows: min-content;
}

.navigation {
  grid-area: navigation;
}

.column.left {
  grid-area: left-column;
  width: 26vw;
  margin-top: -30vw;
}

.column.right {
  grid-area: right-column;


  margin-top: 0;
  padding: 0;



}

iframe {
  display: block;
}

.small-video {
  grid-area: small-video;
  width: 26vw;
  height: calc(26vw*0.561);
}

.big-video {
  grid-area: big-video;
  width: calc(100vw - 26vw - 17px);
  height: calc((100vw - 26vw)*0.553);
}

.responsive {
  width: 100%;
  height: auto;
  /* padding-top: 8.3vw; */
}

/* This element holds injected scripts inside iframes that in some cases may stretch layouts. So, we're just hiding it. */
#fb-root {
  display: none;
}

/* To fill the container and nothing else */
.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget span iframe[style] {
  width: 100% !important;
}

#likebox-wrapper * {
  width: 100% !important;
}

hx {
  font-size: 1.12vw;
  font-weight: bolder;
}

.online-users {
  text-align: center;
  /* Wyśrodkowanie poziome */
  font-family: Arial, sans-serif;
  /* Czcionka bezszeryfowa */
  color: #ddd;
  /* Kolor czcionki */
  /* Wielkość czcionki zależna od szerokości okna */
  padding-bottom: 0.5vw;
  /* Margines wewnętrzny dla estetyki */
}

.online-users h2 {
  margin: 0;
  /* Usunięcie marginesu z nagłówka */
}

#rodo-popup {
  display: flex;
  /* Układ flexbox */
  flex-direction: column;
  /* Ustawienie elementów w kolumnie */
  justify-content: center;
  /* Wyśrodkowanie w pionie */
  align-items: center;
  /* Wyśrodkowanie w poziomie */
  background: rgba(0, 0, 0, 0.9);
  /* Ciemne, półprzezroczyste tło */
  color: white;
  /* Biały kolor tekstu */
  position: fixed;
  /* Ustawienie na stałe na dole */
  bottom: 0;
  /* Przyklejenie do dolnej krawędzi */
  left: 0;
  /* Przyklejenie do lewej krawędzi */
  right: 0;
  /* Przyklejenie do prawej krawędzi */
  padding: 20px;
  /* Odstęp wewnętrzny */
  z-index: 1000;
  /* Warstwa na wierzchu */
  font-family: Arial, sans-serif;
  /* Czcionka */
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
  /* Cień */
}

#rodo-popup p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 16px;
  /* Rozmiar czcionki */
  line-height: 1.5;
}

#rodo-popup a {
  color: #4caf50;
  /* Zielony kolor linku */
  text-decoration: underline;
  /* Podkreślenie linku */
}

#rodo-popup a:hover {
  color: #81c784;
  /* Jaśniejszy zielony na hover */
}

#rodo-popup button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4caf50;
  /* Zielone tło */
  color: white;
  /* Biały kolor tekstu */
  border: none;
  border-radius: 5px;
  /* Zaokrąglenie rogów */
  cursor: pointer;
  font-size: 14px;
  /* Rozmiar czcionki */
  transition: background-color 0.3s ease;
  /* Animacja */
}

#rodo-popup button:hover {
  background-color: #388e3c;
  /* Ciemniejszy zielony na hover */
}

/* Statistics Font Sizes (VW) */
#visitor-stats,
#country-stats {
  font-size: 0.9vw !important;
}

#visitor-stats h5,
#country-stats h5 {
  font-size: 1.0vw !important;
}

#visitor-stats span,
#country-stats span {
  font-size: 0.9vw !important;
}

#visitor-stats button {
  font-size: 0.8vw !important;
  margin-left: 1vw;
}

.video-container {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  transition: background 0.3s;
}

#visitor-stats {
  padding: 0 0.5vw 0.5vw 0.5vw !important;
}

#visitor-stats>div {
  gap: 1vw !important;
  margin-bottom: 0.5vw !important;
}

#country-stats {
  gap: 0.5vw !important;
}

.stats-header-secondary {
  margin: 3.0vw 0 0.5vw 0 !important;
}

#show-more,
#hide-more {
  background: none;
  border: 1px solid #ddd;
  padding: 0.5vw 1vw;
  font-size: 0.9vw;
  color: #ddd;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}

#show-more:hover,
#hide-more:hover {
  background: #444;
}