﻿.dt - actions {
    display: flex;
    gap: 6px;
    white - space: nowrap;
}

.dt - action - icon {
    display: inline - flex;
    align - items: center;
    justify - content: center;
    width: 30px;
    height: 30px;
    border - radius: 6px;
    color: var(--m - text - muted);
    text - decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.dt - action - icon: hover {
    background: var(--m - bg - soft, rgba(66, 114, 215, 0.08));
    color: var(--m - accent);
}

.dt - action - icon--danger: hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.dt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dt-modal {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.dt-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--m-danger-soft);
    color: var(--m-danger);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.dt-modal__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--m-text);
    margin-bottom: 8px;
}

.dt-modal__text {
    font-size: 13.5px;
    color: var(--m-text-muted);
    margin-bottom: 20px;
}

.dt-modal__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
body.theme-2026 .m-table th {
    text-transform: none;
}