body {
    background-color: white;
}

.search-history-plugin {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.search-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-logo {
    width: 130px;
    height: 170px;
    margin: auto;
    /* object-fit: fill; */
}

.search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-type-container {
    margin: 15px 0; /* Space above and below the checkboxes */
    text-align: left; /* Align text to the left */
}

.checkbox-label {
    margin-right: 15px; /* Space between checkboxes */
    font-size: 14px; /* Font size for checkbox labels */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
}

.checkbox-label input {
    margin-right: 5px; /* Space between checkbox and label text */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.search-buttons {
    margin-top: 10px;
}

.search-button {
    width: 200px;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #eaf0fa;
    color: rgb(15, 15, 15);
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #357ae8;
}

.empty-state {
    /* width: 100%; */
    margin-top: 20px;
    font-size: 15px;
    color: #292828;
    background-color: #f0f0f0;

}

.search-history-results {
    margin-top: 30px;
    text-align: left;
}

.history-list {
    list-style-type: none;
    padding: 0;
}

.history-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
