.search-container {
    padding: 10px 10px 0 10px;
    background: #21293C;
    border-radius: 8px;
    margin: 10px;
}
.search-input-group {
    display: flex;
    background: #2C3648;
    border-radius: 8px;
    overflow: hidden;
}
.type-selector {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.type-item {
    padding: 8px 15px;
    background: #2C3648;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}
.type-item.active {
    background: #4A5568;
}
.search-input {
    flex: 1;
    border: none;
    background: #2C3648;
    color: #fff;
    padding: 12px;
    font-size: 15px;
    outline: none;
}
.search-btn {
    padding: 12px 20px;
    background: #4A5568;
    color: #fff;
    border: none;
    cursor: pointer;
}
.history-section, .hot-search-section {
    margin: 0 10px;
    background: #21293C;
    border-radius: 8px;
    padding: 15px;
}
.section-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}
.history-list, .hot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.history-item, .hot-item {
    background: #2C3648;
    padding: 6px 12px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}
.search-results {
    margin: 0 10px;
}
.result-item {
    background: #21293C;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
}
.pagination-container {
    margin: 20px 10px;
    text-align: center;
}
.pagination {
    display: inline-flex;
    gap: 8px;
    background: #21293C;
    padding: 10px;
    border-radius: 8px;
}
.page-item {
    padding: 8px 15px;
    background: #2C3648;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}
.page-item.active {
    background: #4A5568;
}
.page-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}