/*
 PHP version 8.0~

 @license   Commercial
 @copyright Copyright (c) 2026 Ingo Koch
 @link      http://www.computer-freak24.de
 @version   v1.5 07.2026
 @author    Ingo Koch <koch.ingo@t-online.de>
 @lastEdit  05.07.2026
*//* 
    Created on : 05.07.2026, 05:52:59
    Author     : stixnroll
*/

.bo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bo-surface);
    border: 1px solid var(--bo-border);
    border-radius: var(--bo-radius);
    overflow: hidden;
}

.bo-table th,
.bo-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--bo-border);
    text-align: left;
    vertical-align: middle;
}

.bo-table th {
    background: var(--bo-surface-soft);
    font-weight: 600;
    color: var(--bo-text);
}

.bo-table tr:last-child td {
    border-bottom: 0;
}

.bo-table tr:hover td {
    background: rgba(0,0,0,.025);
}

.bo-table-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}