﻿.bottom-right-corner {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

/* Styling for our global floating panel */
#Support-Panel {
    display: none;
    position: fixed;
    top: 50px;
    right: 0px;
    width: 200px;
    background-color: #fffffff0;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    /* Styling for buttons inside the floating panel */
    #Support-Panel button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 5px;
        border: none;
        background-color: #3498db;
        color: #fff;
        cursor: pointer;
    }

        /* Hover effect for buttons */
        #Support-Panel button:hover {
            background-color: #2980b9;
        }
