.happy-unfold-wrapper {
    display: block !important;
    position: relative !important;
}

.happy-unfold-content {
    overflow: hidden !important;
    position: relative !important;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.happy-unfold-wrapper.is-open .happy-unfold-content {
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

.happy-unfold-btn {
    display: inline-block !important;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
    transition: background 0.3s ease;
}

.happy-unfold-btn:hover {
    background-color: #555;
}

.happy-unfold-btn-container {
    width: 100%;
    margin-top: 10px;
}

/* Wenn der Container auf justify steht, wird der Button vollflächig */
[style*="text-align: justify"] .happy-unfold-btn {
    display: block !important;
    width: 100%;
    text-align: center;
}