/*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
}
h1 {
    text-align: center;
    color: #333;
}
*/

.search-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.search-input-css_v1 {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.search-btn {
    padding: 5px;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.search-btn:hover {
    background-color: #006666;
}
/* Search History Styles */
.history-container {
    margin-top: 30px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.0);
    padding: 0px 30px 10px 30px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}
.history-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #008080;
    font-size: 20px;
}
.history-list {
    list-style-type: none;
    padding: 0;
    text-align: left !important;
    overflow-y: unset;
    height: 100%;
}
.history-item {
    background-color: #e8f5f2;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    height: unset;
    border-bottom: unset;
}
.history-item:hover {
    background-color: #d1f0eb;
}
.clear-history {
    margin-top: 10px;
    color: #007b7b;
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
}
.clear-history:hover {
    color: #005757;
}
