#bellis-container {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 95%;
    max-width: 600px;
    pointer-events: auto;
}

.bellis-box {
    background: #F4F2EA;
    border: 2px solid #BD3001;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    pointer-events: all;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 90vh;
    overflow-y: auto; /* gør indhold scrollbart hvis for højt */
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.bellis-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bellis-box h2 {
    margin: 0 0 10px 0;
    color: #BD3001;
    font-size: 1.8em;
}

.bellis-box video {
    width: 100%;
    max-height: 40vh; /* ikke viewport height, så popup ikke bliver for høj */
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

.bellis-box p {
    margin: 10px 0;
    color: #BD3001;
    font-size: 1em;
}

.button-holder {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -370px;
}

.button-holder button {
    padding: 12px 25px;
    background: #BD3001;
    color: #F4F2EA;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.button-holder button:hover {
    background: #76250A;
}

.bellis-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #BD3001;
}

/* animation */
.slide-top {
    transform: translateY(-5%);
    opacity: 0;
}

.slide-down {
    transform: translateY(0);
    opacity: 1;
}


.scroll-down-arrow {
    width: 0; 
    height: 0; 
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #BD3001; /* rød som overskriften */
    margin: 70px auto; /* centreret under teksten */
    animation: bounce 1.5s infinite;
}

/* Bounce-animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

