/* Quick Action Button Styles */
.quick-action-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #FF7A00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.quick-action-button i {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.quick-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.quick-action-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Ripple effect */
.quick-action-button .ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Quick action menu */
.quick-action-menu {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1999;
    width: 250px;
    display: none;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.quick-action-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.quick-action-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #f8f8f8;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.quick-action-menu-item i {
    margin-right: 10px;
    color: #FF7A00;
    font-size: 1.2rem;
}

.quick-action-menu-item:hover {
    background-color: rgba(255, 122, 0, 0.1);
    color: #FF7A00;
    transform: translateX(5px);
}

.quick-action-menu-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    font-size: 1rem;
    padding: 0 5px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .quick-action-button {
        top: 15px;
        right: 80px;
        width: 45px;
        height: 45px;
    }
    
    .quick-action-menu {
        top: 70px;
        right: 15px;
        width: 230px;
    }
}

@media (max-width: 576px) {
    .quick-action-button {
        top: 12px;
        right: 70px;
        width: 40px;
        height: 40px;
    }
    
    .quick-action-button i {
        font-size: 1.2rem;
    }
    
    .quick-action-menu {
        top: 65px;
        right: 10px;
        width: calc(100% - 20px);
        max-width: 300px;
    }
}

@media (max-width: 375px) {
    .quick-action-button {
        top: 10px;
        right: 60px;
        width: 38px;
        height: 38px;
    }
}
