.elementor-3362 .elementor-element.elementor-element-9d1273f > .elementor-container{
    margin: 0 !important;
}

.proxy-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: white;
    padding: 10px;
    box-sizing: border-box;
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 5px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    flex-grow: 1;
}

.filter-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.8em;
}

.filter-group select,
.filter-group input {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #555;
    background-color: #333;
    color: white;
    font-size: 0.9em;
}

.filter-actions {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

.filter-actions button,
.filter-actions .export-btn {
    padding: 8px 15px;
    background-color: #5e2174;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.9em;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.filter-actions button:hover,
.filter-actions .export-btn:hover {
    background-color: #7a2a99;
}

.proxy-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #2a2a2a;
}

.proxy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85em;
    border: 1px solid #444;
    min-width: 100%;
}

.proxy-table th {
    background-color: #333;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid #555;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.proxy-table td {
    text-align: center;
    padding: 10px 6px;
    border: 1px solid #444;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 150px;
}

/* Только IP:Port — без переносов */
.proxy-table th:nth-child(2),
.proxy-table td:nth-child(2) {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    word-break: normal;
}

/* Особое поведение для Organization и ASN */
.proxy-table th:nth-child(10),
.proxy-table td:nth-child(10),
.proxy-table th:nth-child(11),
.proxy-table td:nth-child(11) {
    text-align: left;
    max-width: 180px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 10px 6px;
}

.proxy-table tbody tr:nth-child(even) {
    background-color: #5e2174;
}

.proxy-table tbody tr:nth-child(odd) {
    background-color: #06053e;
}

.proxy-table tbody tr:hover {
    background-color: #7a2a99 !important;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 5px;
}

.pagination a,
.pagination span {
    padding: 8px 12px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #5e2174;
}

.pagination .current {
    background-color: #5e2174;
    font-weight: bold;
}

@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
    }

    .filter-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .proxy-table th,
    .proxy-table td {
        padding: 8px 4px;
        font-size: 0.8em;
        white-space: normal;
    }

    .proxy-table th:nth-child(2),
    .proxy-table td:nth-child(2) {
        white-space: nowrap;
    }

    .proxy-table th:nth-child(10),
    .proxy-table td:nth-child(10),
    .proxy-table th:nth-child(11),
    .proxy-table td:nth-child(11) {
        max-width: 120px;
        font-size: 0.75em;
        text-align: left;
    }
}

/* Замена фона нечётных строк таблицы на цвет близкий к #b45353 */
.proxy-table tbody tr:nth-child(odd) {
    background-color: #b45353 !important;
}