/* Floating Menu Styles */

.fm-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons */
}

/* Position classes will be handled by inline styles */

.fm-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.fm-button i {
    transition: color 0.3s ease;
}

.fm-button:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}
