.cbdas-lab-reports-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Search bar */
.cbdas-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.cbdas-search-bar input {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
}

.cbdas-search-bar input:focus {
    border-color: #411a31;
}

.cbdas-search-bar button {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    background: #411a31;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.cbdas-search-bar button:hover {
    background: #5a2545;
}

/* Product groups */
.cbdas-product-group {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.cbdas-product-name {
    margin: 0;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 700;
    background: #411a31;
    color: #fff;
}

.cbdas-report-list {
    padding: 8px 0;
}

/* Report rows */
.cbdas-report-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cbdas-report-row:last-child {
    border-bottom: none;
}

.cbdas-pdf-icon {
    color: #c0392b;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.cbdas-batch {
    font-weight: 600;
    color: #333;
}

.cbdas-variant {
    color: #666;
    font-size: 14px;
    background: #f5f5f5;
    padding: 2px 10px;
    border-radius: 12px;
}

.cbdas-pdf-link {
    margin-left: auto;
    display: inline-block;
    padding: 6px 16px;
    background: #411a31;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.cbdas-pdf-link:hover {
    background: #5a2545;
    color: #fff;
}

/* No results */
.cbdas-no-results {
    text-align: center;
    color: #888;
    padding: 40px 20px;
    font-size: 16px;
}

/* Loading */
.cbdas-loading {
    text-align: center;
    padding: 30px;
    color: #888;
}

/* Responsive */
@media (max-width: 600px) {
    .cbdas-search-bar {
        flex-direction: column;
    }

    .cbdas-report-row {
        flex-wrap: wrap;
    }

    .cbdas-pdf-link {
        margin-left: 32px;
        margin-top: 4px;
    }
}
