#nette-error {
    position: static !important;
    min-height: 600px !important;
}

/* expandable list */
.expandable-list {
    width: fit-content;
    margin: 0 auto;
    max-width: 600px;
}

.expandable-list h2 {
    margin-bottom: 1.2rem;
    text-align: center;
}

.expandable-list details {
    margin-bottom: 10px;
}

.expandable-list summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
}

.expandable-list summary::before {
    content: '';
    display: inline-block;
    width: 15px;
    min-width: 15px;
    height: 8px;
    margin-right: 8px;
    background-image: url('/assets/closed-list.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

.expandable-list details[open] summary::before {
    background-image: url('/assets/expanded-list.png');
}

.expandable-list ul {
    list-style-type: none;
    margin: 5px 0 15px 34px;
    line-height: 1.7;
    font-size: 1.2rem;
}

/* header-title-text-links color-white*/

/* white */
.header-title-text-links.color-white {
    background-color: #fff;
}
.header-title-text-links.color-white .btn-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(56 47 45 / var(--tw-bg-opacity));
    color: #fff;
}
.header-title-text-links.color-white .btn-primary:hover,
.header-title-text-links.color-white .btn-primary:focus {
    --tw-bg-opacity: 1;
    background-color: rgb(9 26 15 / var(--tw-bg-opacity));
}

/* green */
.header-title-text-links.color-green {
    background-color: #7c8034;
    color: #fff;
}
.header-title-text-links.color-green .text-red,
.header-title-text-links.color-green .text-green {
    color: #fff;
}
.header-title-text-links.color-green .btn-primary {
    background-color: #951826;
    color: #fff;
}
.header-title-text-links.color-green .btn-primary:hover,
.header-title-text-links.color-green .btn-primary:focus {
    --tw-bg-opacity: 1;
    background-color: rgb(9 26 15 / var(--tw-bg-opacity));
}

/* black */
.header-title-text-links.color-black {
    background-color: #382f2d;
    color: #fff;
}
.header-title-text-links.color-black .text-red,
.header-title-text-links.color-black .text-green {
    color: #fff;
}
/*.header-title-text-links.color-black .btn-primary {*/
/*    background-color: #fff;*/
/*    color: #382f2d;*/
/*}*/

/* red */
.header-title-text-links.color-red {
    background-color: #951826;
    color: #fff;
}
.header-title-text-links.color-red .text-red,
.header-title-text-links.color-red .text-green {
    color: #fff;
}
/*.header-title-text-links.color-red .btn-primary {*/
/*    background-color: #fff;*/
/*    color: #951826;*/
/*}*/

/* Carousel item slider (overlay) */
.slider-overlay::before {
    content: "";
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #23181366;
}

/* gift form */
.suboptions {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.suboptions.open {
    max-height: 500px; /* dostatečně vysoké na celý obsah */
}