form {
    margin-bottom: 20px;
}

form div {
    margin-bottom: 10px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-color: white;
    background-size: 12px;
}

form select::-ms-expand {
    display: none;
}

#selected-filters {
    margin-top: 20px;
}

.selected-filter {
    display: inline-block;
    background-color: #f1f1f1;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    border-radius: 4px;
    font-size: 14px;
}

.selected-filter .remove-filter {
    margin-left: 10px;
    color: #ff0000;
    cursor: pointer;
    text-decoration: none;
}

.selected-filter .remove-filter:hover {
    color: #ff3333;
}

.s-hidden {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.select {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.styledSelect {
    position: relative;
    cursor: pointer;
    background-color: white;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px #00000026;
    user-select: none;
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: white;
    box-shadow: 0px 0px 10px 0px #00000026;
}

.options li {
    padding: 10px;
    cursor: pointer;
}

.options li:hover {
    background-color: #f6f6f6;
}
