/* Initial sorting dropdown appearance (white text on dark background) */
.woocommerce-ordering select {
    color: #ffffff !important; /* White text */
  /* Dark background */
    border-color: #ffffff !important; /* White border */
}

/* Enhanced Select2 styling (if enabled) */
.select2-container .select2-selection--single {
    color: #ffffff !important; /* White text */
    background-color: #000000 !important; /* Dark background */
    border-color: #ffffff !important;
}

/* Dropdown options (black text on white background) */
.select2-container--default .select2-results__option {
    color: #000000 !important; /* Black text */
    background-color: #ffffff !important; /* White background */
}

/* Styling the selected option text inside the dropdown */
.select2-container .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
}

/* Native dropdown options (fallback for non-Select2 elements) */
.woocommerce-ordering select option {
    color: #000000; /* Black text */
    background-color: #ffffff; /* White background */
}


.woocommerce-result-count{
	color: #ffffff;
}

/* Style the pagination container */
.page-numbers {
    font-size: 22px; /* Adjust the font size */
    color: #ffffff; /* Default text color */
    font-weight: bold;
}

/* Style the active page number */
.page-numbers.current {
    color: #ffffff; /* Active number color */
    background-color: #000000; /* Active number background */
		margin-top: 10px;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Style the hover effect */
.page-numbers:hover {
    color: #ffffff;
    
    text-decoration: none;
}

/* Style the previous and next buttons */
.page-numbers.prev, .page-numbers.next {
    font-size: 16px;
    color: #ffffff;
		margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.page-numbers.prev:hover, .page-numbers.next:hover {
    background-color: #e8f2ff;
    color: #ffffff;
}
/* Hide the review date & time everywhere they appear */
.woocommerce-review__published-date,
.woocommerce-review__published-date * {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}


