.content {
    display: flex;
    justify-content: center;
    align-self: center;
    width: 1300px;
    height: 1800px;
    margin-top: 30px;
    margin-bottom: 80px;
}

.form {
    width: 80%;
    height: auto;
    font-family: Jost, Arial;
}

.form h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.form p {
    font-size: 23px;
}

.form textarea {
    width: 100%;
    height: 350px;
    background-color: #eeeeee;
    box-shadow: 5px 5px #8b8b8b;
    border-radius: 5px;
    padding-left: 10px;
    padding-top: 5px;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 20px;
}

.formRow {
    display: flex;
    gap: 5px;
    /* Mezery mezi prvky */
    width: 100%;
    /* Zajišťuje, že šířka řady je 100 % */
}

.rating-option {
    flex: 1;
    /* Všechny prvky budou mít stejnou šířku */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border: 1px solid #ccc;
    border-radius: 0px;
    background-color: #e0e0e0;
    cursor: pointer;
    text-align: center;
    font-family: Jost, Arial, sans-serif;
    font-size: 26px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 3px 3px #8b8b8b;
}

.rating-option-vj {
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 18%;
    margin-left: 2%;
    border: 1px solid #ccc;
    border-radius: 0px;
    background-color: #e0e0e0;
    cursor: pointer;
    text-align: center;
    font-family: Jost, Arial, sans-serif;
    font-size: 26px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 3px 3px #8b8b8b;
    margin-top: 10px;
    border-radius: 0 5px 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose {
    width: 50%;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
}


#lastOption {
    border-radius: 0px 10px 10px 0px;
}

#firstOption {
    border-radius: 10px 0px 0px 10px;
}

/* Skrytí základního radio buttonu */
.rating-option input,
.rating-option-vj input {
    display: none;
}

/* Když je radio button vybrán, změní se styl rodičovského rating-option */
.rating-option input:checked+span,
.rating-option-vj input:checked+span {
    background-color: #60dfff;
    /* Zelená barva při výběru */
    color: #fff;
    /* Bílá barva textu při výběru */
    box-shadow: 3px 3px #2b7f94;
    /* Mírný stín v zelené */
    border-color: #60dfff;
    /* Změna barvy okraje */
    border-radius: inherit;
    /* Zachování zaoblení */
}

/* Hover efekt */
.rating-option:hover {
    background-color: #f0f0f0;
}

/* Styl pro text uvnitř rating-option */
.rating-option span {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 70px;
    /* Vertikální zarovnání textu */
    user-select: none;
}

.rating-option-vj span {
    user-select: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question {
    width: 80% !important;
    height: 40px !important;
    box-shadow: 3px 3px #8b8b8b !important;
    border-radius: 5px 0 0 5px !important;
}

.vimJaQuestions {
    margin-top: 50px;
}

.vimJaQuestions p {
    margin-top: 40px;
}

.questionRow {
    display: flex;
    flex-direction: row;
}

.footerContent {
    margin-bottom: 50px;
}

form button {
    justify-content: center;
    align-items: center;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 0px;
    background-color: #e0e0e0;
    cursor: pointer;
    text-align: center;
    font-family: Jost, Arial, sans-serif;
    font-size: 26px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 3px 3px #8b8b8b;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Když je checkbox vybrán, změní se styl celého labelu */
.rating-option-vj input:checked+span,
.rating-option-vj input:checked {
    background-color: #60dfff !important;
    /* Modrá barva při výběru */
    color: #fff;
    /* Bílá barva textu při výběru */
    box-shadow: 3px 3px #2b7f94;
    /* Mírný stín v modré */
    border-color: #60dfff;
    /* Změna barvy okraje */
}

/* Odstranění omezení na span */
.rating-option-vj input:checked+span {
    display: block;
    background-color: inherit;
    /* Používá barvu z rodiče */
    width: 100%;
    height: 100%;
    text-align: center;
}


div.respontiveSelection1,
div.respontiveSelection2 {
    all: unset;
    /* Resetuje všechny styly elementu */
    display: contents;
    /* Způsobí, že element neovlivní tok dokumentu */
}


@media screen and (max-width: 1300px) {
    .content {
        width: 100%;
    }
}

@media screen and (max-width: 650px) {
    .formRow {
        flex-direction: column;
    }

    div.respontiveSelection1,
    div.respontiveSelection2 {
        display: flex;
        flex-direction: row;
        flex: 1;
    }

    #lastOption {
        border-radius: 0px 0px 0px 0px;
    }

    #firstOption {
        border-radius: 0px 0px 0px 0px;
    }

    .rating-option-vj {
        font-size: 17px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width: 375px) {
    .rating-option-vj {
        font-size: 12px;
    }
}