body {
    font-family: Arial, sans-serif;
}

.multi-select-container {
    width: 100%;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Center the dropdowns horizontally */
    align-items: center; /* Center the dropdowns vertically */
}

.multi-select {
    position: relative;
    width: 200px;
}

.select-box {
    position: relative;
    display: block;
    border: 1px solid #0078D4;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.select-box select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #0078D4;
}

.over-select {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.checkboxes {
    display: none;
    border: 1px solid #0078D4;
    border-top: none;
    background: #fff;
    border-radius: 0 0 4px 4px;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 400px; /* Set maximum height */
    overflow-y: auto; /* Add vertical scrollbar */
}

.checkboxes label {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.checkboxes label:last-child {
    border-bottom: none;
}

.checkboxes input {
    margin-right: 10px;
}

.checkboxes label:hover {
    background: #f0f0f0;
}

.dropdown-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-box::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #0078D4;
}

.unique-custom-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start; /* Align products to the left */
}

.unique-custom-product {
    width: 300px;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    padding: 10px;
    text-align: left; /* Align content to the left */
}

.unique-custom-product img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.unique-custom-product h2 {
    font-size: 16px;
    margin: 10px 0;
    text-align: left; /* Align product name to the left */
}

.unique-product-excerpt {
    font-size: 14px;
    color: #555;
    text-align: left; /* Ensure the text is left-aligned */
    text-decoration: none; /* Ensure the text is not underlined */
}

.unique-product-excerpt a {
    text-decoration: none; /* Ensure links are not underlined */
    color: inherit; /* Ensure link color is the same as the text color */
}


.unique-custom-product .product-image-container {
    position: relative;
}

.material-annotation {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 3px;
    font-size: 12px;
}

.reset-button {
	content: '';
    display: inline-block;
    border: 1px solid #0078D4;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    color: #0078D4;
    font-size: 14px;
    margin-left: 10px; /* Adjust spacing if needed */
    transition: background-color 0.3s, color 0.3s;
}

.reset-button:hover {
	content: '';
    background-color: #0078D4;
    color: #fff;
}
