﻿
.action-box {
    position: absolute;
    inset-inline-start: 120px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

/* Show on hover (desktop) */
.table-row:hover .action-box {
    display: flex;
}

.table-row {
    position: relative;
    cursor: pointer;
