/* Odstraneni vychozich okraju prohlizece */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

/* Kontejner pres celou obrazovku */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Responzivita obrazku */
.centered-image {
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    cursor: pointer;
}
.image-wrapper {
    position: relative;
    display: inline-block;
}

.click-area {
    position: absolute;

    /* TADY SI NASTAVÍŠ POZICI */
    top: 90%;     /* odshora */
    left: 30%;    /* zleva */

    width: 40%;   /* šířka oblasti */
    height: 5%;  /* výška oblasti */

    cursor: pointer;
}
