.search-container {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.search-box {
    display: flex;
    margin-bottom: 10px;
}

#city-search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

#city-search-btn {
    padding: 0 15px;
    background-color: #8B0000;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.search-filters select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

.tag-filter {
    margin-top: 10px;
}

.tag-filter h4 {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.tag-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-btn {
    padding: 5px 10px;
    background-color: #eee;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.tag-btn.active {
    background-color: #8B0000;
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 10px;
}

.pagination button {
    padding: 8px 15px;
    background-color: #8B0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#page-info {
    font-size: 14px;
    color: #666;
}

.no-results {
    text-align: center;
    padding: 30px;
    color: #666;
    font-style: italic;
}