/* Search Bar */
.search-box {
    position: sticky;
    top: 0;
    background: white;
    padding: 15px;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26,115,232,0.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f5f7fa;
}

.search-result-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.search-result-content {
    font-size: 0.9em;
    color: #666;
}

.search-highlight {
    background-color: #fff3cd;
    padding: 0 2px;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

/* Resto dos estilos de pesquisa... */ 