@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

#search-bar {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.quick-search-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.quick-search-button {
    background-color: #f0f0f0;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.quick-search-button:hover {
    background-color: #e0e0e0;
}

#results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    display: none;
}

#results li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

#results li:hover {
    background-color: #f0f0f0;
}

#results.show {
    display: block;
}

.result-title {
    font-weight: 700;
    font-size: 14px;
}

.result-tags {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background-color: #e0e0e0;
    color: #555;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
}