/* --- TACTICAL TABLE --- */
.tactical-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tactical-table thead {
    background: rgba(251, 191, 36, 0.1);
    border-bottom: 2px solid var(--primary);
}

.tactical-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.tactical-table td {
    padding: 1rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-main);
}

.tactical-table tbody tr {
    transition: background 0.2s ease;
}

.tactical-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.05);
}

.tactical-table .text-center {
    text-align: center;
}

.btn-remove-suburb {
    background: transparent;
    border: 1px solid var(--accent-error);
    color: var(--accent-error);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-suburb:hover {
    background: var(--accent-error);
    color: white;
    transform: scale(1.1);
}