  html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            font-family: sans-serif;
        }

        /* Hlavní kontejner pro celé "plátno" 1080x1920 */
        .screen {
        	position: fixed;
        	top: 100px;
            width: 100vw;
            height: 100vh;
            display: flex;
            flex-direction: column;

        }

        /* Horní pruh přes celé plátno */
        .top-bar {
            flex: 0 0 4%;          /* výška horního pruhu (15 % obrazovky – upravte dle potřeby) */
            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 2rem;
        }

        /* Spodní část rozdělena na 2 panely (2 TV vedle sebe) */
        .panels {
            flex: 1;                /* zabere zbytek výšky */
            display: flex;
            flex-direction: row;
        }

        .panel {
            flex: 1;                /* každý panel polovina šířky */
            border-left: 1px solid #444;
            border-right: 1px solid #444;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center; /* vycentrovat v panelu vertikálně */
            gap: 2rem;              /* mezera mezi dvěma boxy */
        }

        /* Samotné středové boxy v panelech */
        .panel-box {
            width: 90%;             /* šířka boxu v rámci panelu */
            height: 41%;            /* výška boxu – upravte podle potřeby */
            display: flex;
            align-items: center;
            justify-content: center;
            background: #555;
            border-radius: 10px;
            font-size: 1.5rem;
        }

     .panel-box-1 {
            width: 40%;             /* šířka boxu v rámci panelu */
           /* height: 11%;            /* výška boxu – upravte podle potřeby */
            display: flex;
            align-items: center;
            justify-content: center;
            background: #555;
            border-radius: 10px;
            font-size: 1.5rem;
        }
.panel-box-1 img {

 width: 100%;
    height: 100%;
    object-fit: cover;    /* klíč – obrázek vyplní div */
    object-position: center; /* vystředění */
    display: block;}

.panel-box img {

 width: 100%;
    height: 100%;
    object-fit: cover;    /* klíč – obrázek vyplní div */
    object-position: center; /* vystředění */
    display: block;}

        /* Volitelné: odlišit panely barvou pozadí */
        .panel-left  {  }
        .panel-right {  }


.forecast-container{
position: fixed;
top: 50px;
left: 180px;

}


.hodiny-obal {
  position: absolute;
    top: 40px; /* Posunutí pro místo na číslice */
  width: 127px; /* Trochu větší pro číslice */
  height: 225px;
}

.hodiny {
  position: absolute;
  top: 10px; /* Posunutí pro místo na číslice */
  left: 10px;
  width: 127px;
  height: 200px;
  border: 2px solid black;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.t {
  position: relative; 
  border-radius: 25px;
  padding:  60px 5px 30px;
  font-size: 25px;
  float: right;
  font-weight: bold;
  top: 40px;
  width: 140px;
  height: 90px;
  text-align: center;
  border-style:solid;  
  border-color: #974859;
  margin: 5px 10px;  
  
   }
/*
.t {
  position: absolute; 
  font-size: 25px;
  font-weight: bold;
  left: 0px; 
  top: 200px;
  width: 127px;
   }*/

.cislice {
  position: absolute;
  width: 127px; /* Stejná velikost jako hodiny */
  height: 220px;
}

.stred {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rucicka {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 5px;
}

.hodinova {
  width: 6px;
  height: 50px;
  background-color: black;
  transform: translateX(-50%) rotate(0deg);
}

.minutova {
  width: 4px;
  height: 70px;
  background-color: blue;
  transform: translateX(-50%) rotate(0deg);
}

.sekundova {
  width: 2px;
  height: 90px;
  background-color: red;
  transform: translateX(-50%) rotate(0deg);
}



.cislice span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
}

/* Umístění číslic pomocí rotace */
.cislice span:nth-child(1) { transform: translate(-50%, -50%) translateY(-90px); } /* 12 */
.cislice span:nth-child(2) { transform: translate(-50%, -50%) rotate(30deg) translateY(-90px) rotate(-30deg); } /* 1 */
.cislice span:nth-child(3) { transform: translate(-50%, -50%) rotate(60deg) translateY(-90px) rotate(-60deg); } /* 2 */
.cislice span:nth-child(4) { transform: translate(-50%, -50%) rotate(90deg) translateY(-90px) rotate(-90deg); } /* 3 */
.cislice span:nth-child(5) { transform: translate(-50%, -50%) rotate(120deg) translateY(-90px) rotate(-120deg); } /* 4 */
.cislice span:nth-child(6) { transform: translate(-50%, -50%) rotate(150deg) translateY(-90px) rotate(-150deg); } /* 5 */
.cislice span:nth-child(7) { transform: translate(-50%, -50%) rotate(180deg) translateY(-90px) rotate(-180deg); } /* 6 */
.cislice span:nth-child(8) { transform: translate(-50%, -50%) rotate(210deg) translateY(-90px) rotate(-210deg); } /* 7 */
.cislice span:nth-child(9) { transform: translate(-50%, -50%) rotate(240deg) translateY(-90px) rotate(-240deg); } /* 8 */
.cislice span:nth-child(10) { transform: translate(-50%, -50%) rotate(270deg) translateY(-90px) rotate(-270deg); } /* 9 */
.cislice span:nth-child(11) { transform: translate(-50%, -50%) rotate(300deg) translateY(-90px) rotate(-300deg); } /* 10 */
.cislice span:nth-child(12) { transform: translate(-50%, -50%) rotate(330deg) translateY(-90px) rotate(-330deg); } /* 11 */

.news-ticker-wrapper {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  overflow: hidden;
  height: 40px;
  z-index: 9999;
}

.news-ticker {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker-scroll linear infinite;
  color: #fff;
  font-size: 40px;
  line-height: 40px;
  font-family: sans-serif;
}


@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

      
        h1 {
            margin-bottom: 30px;
        }
        .forecast-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            text-align: center;
        }
        .day-box {
            background: white;
            padding: 17px;
            border-radius: 10px;
            width: 115px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .weather-icon {
            font-size: 48px;
        }
        .temp {
            margin: 10px 0;
            font-size: 18px;
        }
        .date {
            font-size: 16px;
            color: #333;
        }
        
        .aktu{
text-align:center;        
        }