    .ms-footer {
        font-size: 0.95rem;
        color: #333;
    }

    .ms-floating-msg {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .ms-msg-toggle {
        background-color: #007bff;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        font-size: 1.5rem;
    }

    .ms-help-text {
        margin-bottom: 8px;
        background: #007bff;
        color: white;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.85rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .ms-msg-options {
        display: none;
        flex-direction: column;
        margin-bottom: 10px;
        animation: fadeIn 0.3s ease-in-out;
    }

    .ms-msg-options a {
        background-color: white;
        color: #007bff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin: 5px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-size: 1.3rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }