/* Search input styling */
.search-container {
    margin-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    max-width: 40rem;
    margin-inline: auto;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #5BC0DE;
    pointer-events: none;
}

.search-input-wrapper .search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 2.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-input-wrapper .search-input:focus {
    outline: none;
    border-color: #5BC0DE;
    box-shadow: 0 0 0 3px rgba(91, 192, 222, 0.15);
}

.search-input-wrapper .search-input::placeholder {
    color: #9ca3af;
}

.search-input-wrapper .clear-search-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    display: none;
}

.search-input-wrapper .clear-search-btn:hover {
    color: #6b7280;
}

.search-input-wrapper .clear-search-btn.show {
    display: block;
}

/* Search highlight styling */
.search-highlight {
    background-color: #ffe066;
    padding: 0.15em 0;
    border-radius: 0.15em;
    color: #1a1a1a;
    font-weight: 500;
}
