.searchForm {
    position: fixed;
    top: 80px;
    right: -322px;
    z-index: 10;
    display: flex;
    backdrop-filter: blur(30px);
    background-color: rgba(0, 0, 0, 0.589);
    color: white;
    padding: 10px;
    border: 1px solid black;
    margin-top: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: right 0.3s ease-in-out;
    width: 300px;
    /* cursor: pointer; */
}

.searchForm.active {
    right: 0; /* Slides to fully visible when active class is applied */
}

.searchForm .handle {
    position: absolute;
    left: -40px;
    top: 10px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
}

.searchForm input[type="submit"] {
    margin-top: 10px;
    cursor: pointer;
}

.searchForm input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid black;
  background-color: #666;
  color: whitesmoke;
  
}

.searchForm input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

