/* Arama Kutusu Tasarımı */
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.search-box {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #4F6CFF;
    /* SBK MOTOR'un ana rengi */
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.search-box:focus {
    border-color: #FF4500;
    /* Turuncuya geçiş */
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
}