.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.32rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.24);
    filter: brightness(1.06);
}

.action-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.action-btn .fas,
.action-btn .fa {
    font-size: 0.85rem;
}

.action-btn.btn-info {
    background-color: #17a2b8;
    color: #fff;
}

.action-btn.btn-warning {
    background-color: #ffc107;
    color: #212529;
}

.action-btn.btn-danger {
    background-color: #e3342f;
    color: #fff;
}

.btn-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.btn-actions form {
    display: inline-flex;
    align-items: center;
}