/* Main Layout Controls */
#buce-editor-wrap .buce-controls {
    margin: 15px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

#buce-editor-wrap #buce-search {
    width: 250px;
}

#buce-editor-wrap .buce-controls .spinner {
    float: none;
    margin-left: 10px;
    vertical-align: middle;
}

/* Table styles */
#buce-editor-wrap .wp-list-table th.product-name {
    width: 25%;
}

/* Dirty (changed) row indicator */
#buce-editor-wrap tr.is-dirty {
    background-color: #fffbe5 !important;
}

/* Message container */
#buce-message-container {
    margin-bottom: 15px;
    height: 45px;
}
#buce-message-container .notice {
    margin: 0;
}

/* Pagination */
.buce-pagination {
    margin-top: 15px;
}

.buce-pagination .page-numbers {
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #ccc;
    margin: 0 2px;
    display: inline-block !important;
}

.buce-pagination .page-numbers.current {
    background: #007cba;
    color: #fff;
    border-color: #007cba;
}


/* Tag Input Container */
.buce-tag-container {
    border: 1px solid #ddd;
    padding: 5px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
    min-height: 38px;
}

.buce-tag-container input[type="text"] {
    border: none;
    box-shadow: none;
    flex-grow: 1;
    min-width: 150px;
    padding: 2px;
    outline: none;
}

/* Individual Tags */
.buce-tag {
    background-color: #e0e0e0; /* CORRECTED VALUE */
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px 6px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    white-space: nowrap;
    height: 28px;
    box-sizing: border-box;
}

/* Styles for the discount wrapper */
.buce-tag .buce-discount-wrapper {
    margin-left: 8px;
    font-size: 12px;
    color: #444;
    display: inline-flex;
    align-items: center;
}

/* Styles for discount input */
.buce-tag .buce-discount-input {
    width: 45px;
    text-align: center;
    border: 1px solid #b4b4b4;
    border-radius: 2px;
    padding: 1px 2px;
    font-size: 12px;
    height: 20px;
    margin: 0 4px;
    -moz-appearance: textfield;
}
.buce-tag .buce-discount-input::-webkit-outer-spin-button,
.buce-tag .buce-discount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.buce-remove-tag {
    margin-left: 5px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0 2px;
    color: #555;
    opacity: 0.7;
}
.buce-remove-tag:hover {
    color: #d00;
    opacity: 1;
}

/* Search Results Dropdown */
.buce-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 100;
    list-style: none;
    margin: 2px 0 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.buce-search-results li {
    padding: 8px 12px;
    cursor: pointer;
    margin: 0;
}

.buce-search-results li:hover {
    background-color: #0073aa;
    color: #fff;
}

.cross-sell-discount-badge {
    background-color: #ff6b35 !important;
    color: white !important;
}