.search-container {
    margin-bottom: 2rem;
}

.search-results {
    position: relative;
    margin-bottom: 3rem;
}

.result-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.result-thumbnail {
    position: relative;
    background: #f8f9fa;
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Search Filters */
.search-filters {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filters-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4B5563;
    font-size: 0.875rem;
}

.filter-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-size: 0.875rem;
}

.filter-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    height: 38px;
}

.filter-button:hover {
    background: var(--primary-dark);
}

/* Active Filters */
.active-filters {
    margin: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.filters-label {
    color: #4B5563;
    font-size: 0.875rem;
}

.filter-badge {
    background: #EFF6FF;
    color: #1D4ED8;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remove-filter {
    color: #1D4ED8;
    text-decoration: none;
    font-weight: bold;
}

.remove-filter:hover {
    color: #1E40AF;
}

.clear-filters {
    color: #DC2626;
    text-decoration: none;
    font-size: 0.875rem;
    margin-left: auto;
}

.clear-filters:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .filter-button {
        width: 100%;
    }
}