/* Batch History Page */
.solyn-bh {
    max-width: 1100px;
    margin: 0 auto;
}
.solyn-bh-subtitle {
    color: #666;
    font-size: 0.95em;
    margin: 0 0 1.5em;
}

/* Pill Filters */
.solyn-bh-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-bottom: 1.5em;
}
.solyn-bh-pill {
    display: inline-block;
    padding: 0.5em 1.25em;
    border: 1px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    color: #333;
    background: #fff;
    transition: all 0.15s;
    white-space: nowrap;
}
.solyn-bh-pill:hover {
    border-color: #009b8d;
    color: #009b8d;
}
.solyn-bh-pill.active {
    background: #009b8d;
    border-color: #009b8d;
    color: #fff;
}

/* Search */
.solyn-bh-search-wrap {
    position: relative;
    margin-bottom: 1em;
}
.solyn-bh-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}
.solyn-bh-search {
    width: 100%;
    padding: 0.75em 1em 0.75em 2.75em;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95em;
    outline: none;
    box-sizing: border-box;
}
.solyn-bh-search:focus {
    border-color: #009b8d;
}
.solyn-bh-search::placeholder {
    color: #aaa;
}

/* Count */
.solyn-bh-count {
    font-size: 0.85em;
    color: #666;
    margin: 0 0 0.75em;
}
.solyn-bh-count strong {
    color: #009b8d;
}

/* Table */
.solyn-bh-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}
.solyn-bh-table thead th {
    text-align: left;
    padding: 0.85em 1em;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}
.solyn-bh-table tbody td {
    padding: 1em;
    font-size: 0.9em;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}
.solyn-bh-table tbody tr:last-child td {
    border-bottom: none;
}
.solyn-bh-purity {
    color: #009b8d;
    font-weight: 600;
}

/* Download link */
.solyn-bh-download {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    color: #009b8d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}
.solyn-bh-download:hover {
    text-decoration: underline;
    color: #007d72;
}

/* Single Product Page Header */
.solyn-bh-back {
    display: inline-block;
    margin-bottom: 1.5em;
    color: #009b8d;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
}
.solyn-bh-back:hover {
    text-decoration: underline;
}
.solyn-bh-product-header {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin-bottom: 2em;
}
.solyn-bh-product-image {
    flex-shrink: 0;
    width: 80px;
}
.solyn-bh-product-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.solyn-bh-product-info h2 {
    margin: 0 0 0.15em;
    font-size: 1.3em;
}
.solyn-bh-product-info .solyn-bh-subtitle {
    margin: 0 0 0.5em;
}
.solyn-bh-view-product {
    color: #009b8d;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 500;
}
.solyn-bh-view-product:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .solyn-bh-table {
        display: block;
        overflow-x: auto;
    }
    .solyn-bh-filters {
        gap: 0.4em;
    }
    .solyn-bh-pill {
        padding: 0.4em 0.9em;
        font-size: 0.8em;
    }
}
