.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );}/* Start custom CSS for button, class: .elementor-element-f38c689 */#forum-button {
    position: fixed; /* Stick to the viewport */
    top: calc(50px + 2cm); /* Move it 2cm down from the current alignment */
    right: 20px; /* Keep it aligned to the right */
    z-index: 9999; /* Ensure it stays on top */
    display: inline-block; /* Proper button display */
    background-color: #8B0000; /* Dark red background */
    color: #FFFFFF; /* White text for visibility */
    padding: 14px 30px; /* Larger padding for a bigger button */
    font-size: 16px; /* Slightly larger font size */
    font-weight: bold; /* Bold text for emphasis */
    border-radius: 6px; /* Rounded corners for consistency */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for prominence */
}

/* Hover effect */
#forum-button:hover {
    background-color: #660000; /* Slightly darker red on hover */
    transition: all 0.3s ease; /* Smooth hover transition */
}/* End custom CSS */