.search-sort-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #99e32e;
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sort-dropdown {
    position: relative;
    min-width: 220px;
}

.sort-button {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.sort-button:hover {
    border-color: #99e32e;
    background: rgba(255, 255, 255, 0.15);
}

.sort-button-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(21, 29, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-top: 0.5rem;
    display: none;
    z-index: 100;
    min-width: 220px;
}

.sort-options.show {
    display: block;
}

.sort-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.sort-option:hover {
    background: rgba(153, 227, 46, 0.1);
    color: #99e32e;
}

.sort-option.active {
    background: rgba(153, 227, 46, 0.2);
    color: #99e32e;
}

.selected-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.selected-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(153, 227, 46, 0.1);
    color: #99e32e;
    border: 1px solid rgba(153, 227, 46, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.selected-filter-close {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.selected-filter-close:hover {
    color: #ffffff;
}