body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #0b0f14;
    color: #9fffd0;
    margin: 0;
    padding: 16px;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 156, 0.02),
        rgba(0, 255, 156, 0.02) 1px,
        transparent 2px,
        transparent 4px
    );
}

/* Title */
h1 {
    text-align: center;
    color: #00ff9c;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.6);
    margin-bottom: 30px;
}

/* Table */
.table {
    --bs-table-bg: #0f1623;
    --bs-table-color: #9fffd0;
    border: 1px solid #00ff9c33;
}

.table thead th {
    background-color: #0a1f1a;
    color: #00ff9c;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 255, 156, 0.08);
}

/* Standard buttons */
.btn {
    font-family: 'JetBrains Mono', monospace;
    border-radius: 6px;
}

/* Pagination */
.dataTables_paginate {
    margin-top: 20px;
}

.page-item .page-link {
    background-color: #0f1623;
    color: #00ff9c;
    border: 1px solid #00ff9c33;
}

.page-item.active .page-link {
    background-color: #00ff9c;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.7);
}

.page-item .page-link:hover {
    background-color: rgba(0, 255, 156, 0.15);
}

/* Search */
.dataTables_filter input {
    background-color: #0f1623;
    border: 1px solid #00ff9c55;
    color: #00ff9c;
}

.dataTables_filter input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.6);
}

/* DataTables main button */
.dt-buttons .btn {
    background: linear-gradient(135deg, #00ff9c, #00cc7a) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 8px 14px;
    box-shadow: 0 0 12px rgba(0, 255, 156, 0.4);
    transition: all 0.2s ease;
    animation: pulse 3s infinite;
}

.dt-buttons .btn::before {
    content: "▶ ";
    font-weight: bold;
}

.dt-buttons .btn:hover {
    box-shadow: 0 0 18px rgba(0, 255, 156, 0.8);
    transform: translateY(-1px);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px #00ff9c; }
    50% { box-shadow: 0 0 18px #00ff9c; }
}

.danger-dot {
    font-size: 1rem;
    margin-right: 2px;
    text-shadow: 0 0 6px currentColor;
}

/* Неоновый tooltip */
.tooltip-inner {
    background: #0f1623;
    color: #00ff9c;
    border: 1px solid #00ff9c55;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 0 12px rgba(0, 255, 156, 0.6);
    padding: 6px 10px;
    font-size: 0.8rem;
}

/* Стрелка tooltip */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #00ff9c55;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #00ff9c55;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #00ff9c55;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #00ff9c55;
}

/* Лёгкое свечение при наведении на кружки */
.danger-tooltip:hover {
    filter: drop-shadow(0 0 6px #00ff9c);
    cursor: default;
}
