.custom-search-box {
    display: flex;
    width: 100%;
    max-width: 250px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
    margin-left: auto; /* Masaüstünde arama kutusunu sağa (dövize) yaslar, boşluğu kapatır */
}

.custom-search-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent;
    flex-grow: 1;
    padding: 0 10px;
    min-width: 0;
}

.custom-search-input:focus {
    outline: none;
}

.custom-search-btn {
    background-color: #fcb813;
    color: #fff;
    border: none;
    width: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-search-btn:hover {
    background-color: #e5a50e;
}

