/* Стили для страниц Miners, Stats, Blocks */

.page-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: var(--primary-color, #2563eb);
    font-size: 2.5rem;
}

.stat-sub {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Таблицы майнеров и блоков */
.miners-table, .blocks-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 2rem 0;
    border-collapse: collapse;
}

.miners-table thead, .blocks-table thead {
    background: #1f2937;
    color: white;
}

.miners-table th, .blocks-table th,
.miners-table td, .blocks-table td {
    padding: 1rem;
    text-align: left;
}

.miners-table td, .blocks-table td {
    border-bottom: 1px solid #e5e7eb;
}

.miners-table tbody tr:hover, .blocks-table tbody tr:hover {
    background: #f3f4f6;
}

.blocks-table tr.confirmed {
    background: #d1fae5;
}

.blocks-table tr.pending {
    background: #fef3c7;
}

.miners-table a {
    color: #2563eb;
    text-decoration: none;
}

.miners-table a:hover {
    text-decoration: underline;
}

