﻿.quick-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 70px;
    width: 70px;
    justify-content: center;
}

.quick-actions-btn {
    height: 100%;
    width: 100%;
    font-size: 1.5rem;
    color: var(--primary-color);
    border-radius: inherit !important;
}

.quick-actions-popup {
    position: absolute;
    top: 120%;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 8px;
    z-index: 99999999;
    border: 1px solid #ccc;
    overflow: hidden;
}

.quick-actions-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .quick-actions-item:hover {
        background-color: #f8f9fa;
    }
