.rm-d4cb6d23-container .rm-reveal-text {
    display: none;
}

.rm-d4cb6d23-container.is-revealed .rm-reveal-text {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.rm-d4cb6d23-button-wrapper {
    display: block;
    width: 100%;
}

.rm-d4cb6d23-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rm-d4cb6d23-button:hover {
    opacity: 0.9;
}

.rm-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rm-d4cb6d23-button i {
    font-size: 14px;
}
.rm-d4cb6d23-button svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}