    .search-container {
        margin-bottom: 2rem;
    }

    .search-box {
        position: relative;
        max-width: 650px;
        margin-bottom: 1rem;
        border: 1px solid black;
        border-radius: 5px;
        margin-top: 10px;
    }
    .search-input {
        width: 100%;
        padding: 0.75rem 3rem 0.75rem 1rem;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 1rem;
    }
    .search-input:focus {
        outline: none;
        border-color: var(--primary-color);
    }
   .search-icon {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
    }  

   svg {
        fill: #555555;
   }
    .search-results {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid var(--border-color);
        border-top: none;
        border-radius: 0 0 4px 4px;
        max-height: 300px;
        overflow-y: auto;
        z-index: 100;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .search-result-item {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
        cursor: pointer;
        transition: background-color 0.2s;
    }
    .search-result-item:hover {
        background: var(--bg-light);
    }
    .search-result-item:last-child {
        border-bottom: none;
    }
    .search-result-name {
        font-weight: bold;
        color: var(--text-color);
    }
    .search-result-meta {
        font-size: 0.8rem;
        color: var(--text-light);
        margin-top: 0.25rem;
    }
    .loading-search {
        padding: 1rem;
        text-align: center;
        color: var(--text-light);
    }
    .no-results {
        padding: 1rem;
        text-align: center;
        color: var(--text-light);
        font-style: italic;
    }
    
    /* Pagination Info */
    .pagination-info {
        margin-bottom: 1rem;
        color: var(--text-light);
        font-size: 0.9rem;
    }


