body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #f5f5f5;
}

.pool-header {
    background-color: #111;
    color: #fff;
    padding: 15px 0;
}

.pool-logo {
    width: 60px;
    height: 60px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-card {
    background-color: #fff;
    border-radius: 6px;
    padding: 10px 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2px;
}

.card {
    border-radius: 6px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.table th,
.table td {
    vertical-align: middle;
}

.table thead th {
    background-color: #ff6347;
    color: #fff;
    border-color: #ff6347;
}

pre {
    background-color: #222;
    color: #eee;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    overflow-x: auto;
}

.pool-footer {
    background-color: #111;
    color: #ccc;
    padding: 10px 0;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .pool-header h1 {
        font-size: 1.4rem;
    }

    .stat-card {
        text-align: center;
    }
}

/* Green header for selected tables */
.table-green thead th {
    background-color: #28a745 !important; /* Bootstrap green */
    color: #fff !important;
    border-color: #28a745 !important;
}

