.actions-cell {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f5f5f5;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 16px;
    color: #333;
}

.action-btn:hover {
    background-color: #e8e8e8;
    border-color: #999;
}

.action-btn.edit:hover {
    background-color: #d4edff;
    border-color: #0066cc;
    color: #0066cc;
}

.action-btn.danger:hover {
    background-color: #ffe6e6;
    border-color: #cc0000;
    color: #cc0000;
}

.action-btn.info:hover {
    background-color: #e6f3ff;
    border-color: #0066cc;
    color: #0066cc;
}

.dropdown-menu {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    border-radius: 4px;
    right: 0;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a, 
.dropdown-content button {
    color: black;
    padding: 8px 0;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
}

.dropdown-content a:hover, 
.dropdown-content button:hover {
    color: #0066cc;
}

.dropdown-content button.danger-action:hover {
    color: #cc0000;
}

.dropdown-content hr {
    margin: 6px 0;
    border: none;
    border-top: 1px solid #ddd;
}
