/* Arama Kutusu Özel Stilleri */
.plugin-search-container {
    margin: 30px auto;
    max-width: 600px;
}

.plugin-search-wrapper {
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.plugin-search-wrapper:hover, 
.plugin-search-wrapper:focus-within {
    box-shadow: 0 8px 25px rgba(34, 113, 177, 0.2);
    transform: translateY(-2px);
}

.plugin-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2271b1;
    font-size: 1.2rem;
    z-index: 10;
}

#plugin-search-input {
    height: 45px;
    border-radius: 50px;
    padding-left: 50px;
    padding-right: 20px;
    font-size: 16px;
    border: 2px solid transparent;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

#plugin-search-input:focus {
    outline: none;
    box-shadow: none;
    border-color: #2271b1;
    background-color: #fff;
}

#plugin-search-input::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

/* Arama Sonuçları Konteyner Stili */
#search-results {
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 450px;
    overflow-y: auto;
    z-index: 1050;
}

/* Kaydırma Çubuğu Stilleri */
#search-results::-webkit-scrollbar {
    width: 8px;
}

#search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#search-results::-webkit-scrollbar-thumb {
    background: #2271b1;
    border-radius: 10px;
}

#search-results::-webkit-scrollbar-thumb:hover {
    background: #1a5b8f;
}

/* Animasyon Efekti */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#search-results {
    animation: fadeIn 0.3s ease-out;
} 