
 /* Floating Action Button (FAB) */
 .fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.fab:hover {
    background-color: #0056b3;
}

.fab svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Floating menu items */
.floating-menu {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
    display: none;
    flex-direction: column;
}

.floating-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.floating-menu a:hover {
    background-color: #0056b3;
}

.floating-menu a svg {
    width: 24px;
    height: 24px;
}

/* Preloader style */
#preloader {
    background-color: rgba(255, 255, 255, 0.9);
}