#search-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

#search-bar input[type="text"] {
    width: 300px;
    height: 100%;
    padding: 20px;
    border: 0px transparent;
    border-radius: 50px 0px 0px 50px;
}

#search-bar input[type="text"]:focus {
    outline: 1px solid var(--orange);
}

#search-bar select {
    width: 200px;
    height: 100%;
    padding: 8px 40px 8px 20px;
    background-color: var(--orange);
    color: var(--white);
    border: 0px transparent;
    border-radius: 0px 50px 50px 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 16px;
}

#search-bar select:focus {
    outline: none;
}

#search-results {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 25px;
}

.inspection-card {
    width: 190px;
    height: 355px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 5px -8px rgba(0,0,0,0.39);
    -moz-box-shadow: 00px 0px 5px -8px rgba(0,0,0,0.39);
    box-shadow: 0px 10px 15px -8px rgba(0,0,0,0.39);
    background-color: var(--grey);
    text-align: center;
}

.inspection-card:hover {
    scale: 1.03;
    transition: all 0.3s ease-in-out;
}

#inspection-card-image {
    width: 100%;
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#inspection-card-image img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    background-color: #fff;
    margin: 20px;
}

#inspection-card-p {
    color: var(--dark-grey);
    justify-self: center;
}

.inspection-card-button {
    margin: 20px;
}