.validators-container {
    margin: 2rem 0;
}
.validators-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: rgba(26, 42, 54, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.validators-table th, .validators-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 107, 107, 0.3);
}
.validators-table th {
    background: rgba(255, 107, 107, 0.2);
    font-weight: 600;
    color: var(--light);
}
.validators-table td {
    color: var(--light);
}
.validators-table tr:hover {
    background: rgba(255, 107, 107, 0.1);
    transition: var(--transition);
}
.validator-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0.5rem;
    object-fit: cover;
}
.validator-address {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
}
.validator-link {
    text-decoration: none;
    cursor: pointer;
}
.validator-link.status-online {
    color: var(--success) !important; /* Зеленый для онлайн-валидаторов */
}
.validator-link.status-offline {
    color: var(--warning) !important; /* Красный для оффлайн-валидаторов */
}
.validator-link:hover {
    text-decoration: underline;
}
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .validators-table th, .validators-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .validator-image {
        width: 24px;
        height: 24px;
    }
    .validator-address {
        font-size: 0.7rem;
    }
    .status-indicator {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 480px) {
    .validators-table th, .validators-table td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    .validator-image {
        width: 20px;
        height: 20px;
    }
    .validator-address {
        font-size: 0.6rem;
    }
    .status-indicator {
        width: 6px;
        height: 6px;
    }
    .validators-table th:nth-child(4), .validators-table td:nth-child(4),
    .validators-table th:nth-child(6), .validators-table td:nth-child(6) {
        display: none; /* Скрываем "Стейк" и "Мин. стейк" на мобильных */
    }
}