.syng-enquiry-block {
    margin-bottom: 2rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 4px;
    background: #fff;
}

.syng-enq-title {
    margin-top: 0;
    margin-bottom: 1rem;
}

.syng-enq-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.syng-enq-count-wrap {
    font-size: 0.9rem;
    opacity: .8;
}

.syng-enq-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px; /* spacing between rows */
}

/* Product link colour in the order items table */
.syng-enq-table a {
    /* Fallback for older browsers (and as a safety for CDA) */
    color: #002655;

    /* Avada global color: Dark Brand Colour = 6th slot */
    color: var(--awb-color6);
    text-decoration: none;
}

/* Optional: on hover, use Brand Accent (4th slot) */
.syng-enq-table a:hover {
    color: var(--awb-color4);
    text-decoration: underline;
}

.syng-enq-table th {
    padding: 6px 8px;
    font-weight: 600;
    text-align: left;
}

.syng-enq-table td {
    padding: 8px 8px;
    vertical-align: middle;
}

.syng-enq-table td input.syng-enq-qty-input {
    width: 80px;
    padding: 5px 6px;
}

.syng-enq-row td:last-child {
    width: 100px; /* space for Remove button */
}

.syng-enq-table th:nth-child(1),
.syng-enq-table td:nth-child(1) {
    width: 50%;
}

.syng-enq-table th:nth-child(2),
.syng-enq-table td:nth-child(2) {
    width: 15%;
}

.syng-enq-table th:nth-child(3),
.syng-enq-table td:nth-child(3) {
    width: 15%;
}

.syng-enq-table th:nth-child(4),
.syng-enq-table td:nth-child(4) {
    width: 20%;
}

/* Make the Remove button a bit smaller than the big Clear all */
.syng-enq-remove {
    font-size: 12px;
    padding: 4px 10px;
    line-height: 1.2;
}

/* Optional: nudge the Clear all button slightly away from the row */
.syng-enq-clear {
    margin-top: 0.75rem;
}

