.wcqd-discount-rules {
    background: #fff;
    border: 1px solid #000;
    border-left: 4px solid #D4AF37;
    /* Metallic Gold */
    border-radius: 4px;
    /* Sharper corners for B&W elegant look */
    margin: 20px 0;
    box-shadow: none;
    /* Flat elegant look */
    font-family: inherit;
    color: #000;
}

.wcqd-discount-rules-main {
    padding: 1.3rem;
}

.wcqd-discount-rules:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wcqd-discount-rules-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.wcqd-discount-rules h3 {
    color: #000;
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wcqd-icon-trophy {
    width: 24px;
    height: 24px;
    fill: #D4AF37;
    /* Gold */
    flex-shrink: 0;
}

.wcqd-discount-rules ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.wcqd-discount-rules li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
    line-height: 1.4;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.wcqd-discount-rules li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wcqd-discount-rules li svg {
    width: 16px;
    height: 16px;
    fill: #000;
    /* Black icon */
    flex-shrink: 0;
}

.wcqd-discount-rules li strong {
    color: #D4AF37;
    /* Gold accent for numbers */
    font-weight: 700;
}

.wcqd-custom-message {
    font-size: 0.8rem;
    color: #000;
    background: #f9f9f9;
    padding: 0.5rem 1.3rem;
    margin-top: 0.5rem;
}

/* Button Styles */
.wcqd-add-multiple {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wcqd-add-multiple:hover {
    background-color: #D4AF37;
    /* Gold on hover */
    border-color: #D4AF37;
    color: #fff;
}

.wcqd-add-multiple:disabled,
.wcqd-add-multiple.disabled {
    background-color: #eee;
    border-color: #eee;
    color: #aaa;
    cursor: not-allowed;
}