.store-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* This ensures the content inside .store-wrapper is centered vertically */
}
option{
    background-color: black;
    color: white;
}
#tagDrawer {
    overflow-y: auto;
    max-height: 300px;
}
.filter-labels {
    margin-bottom: 3px;
    color: #655d5b;
    font-weight: bold;
    font-size: x-large;
}
.tag-checkbox{
    display: inline-block;
    padding-left: 1.0rem;
    /*margin-right: 5px;*/
}
.tag-check-input{
    width: 15px;
    height: 15px;
}
.tag-label {
    color: whitesmoke;
    font-weight: bold;
    margin-left: 3px;
    font-size: 15px;
}
.tag-label:hover {
    color: #655d5b; 
}
.product-item p {
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Use ellipsis (...) to indicate overflow */
    /* white-space: nowrap; /* Prevent text from wrapping to the next line */
    width: 100%; /* Ensure the element takes the full width of its container */
}
.filter-field{
	color: white;
	background-color: black;
}
.filter-field:hover {
    color: #655d5b; 
}
.filter-search-bar-label{
	background-color: grey;
}
.filter-search-bar-icon{
	color: white;
}
.pagination-link {
    color: white;
    text-align: center;
    margin-right: 5px;
    display: flex; 
    justify-content: center;
    align-items: center; 
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-color: dimgray;
    cursor: pointer;
}
.pagination-link-selected {
    color: white;
    text-align: center;
    margin-right: 5px;
    text-decoration: none;
    display: flex; 
    justify-content: center;
    align-items: center; 
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-color: transparent;
}
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:row;
    margin-bottom: 50px;
}
