body {
    padding-top: 60px;
    width: 90%;
    margin: 0 auto;
}
.container {
    width: 100%;
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
}
.suggestion-list {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1000;
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    margin-right: 10px;
}
.search-container {
    position: relative;
    margin-bottom: 20px;
}
.cookie-setter {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1000;
}

.theme-switch {
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #666;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1;
}

.theme-switch:hover {
    opacity: 0.9;
}

/* Icons for sun and moon */
.theme-switch .icon {
    width: 14px;
    height: 14px;
}