﻿

.search-container {
    width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border: 1px solid #ddd;
    transition: all .25s ease;
}

    .search-container:focus-within {
        box-shadow: 0 6px 25px rgba(0,0,0,0.12);
        border-color: #ff6600;
    }

#SearchText {
    flex: 1;
    border: none;
    font-size: 1rem;
    padding: 10px;
    outline: none;
    color: #333;
    text-align: right;
}

    #SearchText::placeholder {
        color: #aaa;
        font-size: .95rem;
    }

#SearchIcon {
    width: 40px;
    height: 40px;
    border: none;
    background: #f0cab4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 8px;
    cursor: pointer;
    transition: all .2s ease;
}

    #SearchIcon:hover {
        background: #e75400;
    }

    #SearchIcon:active {
        background: #e75400;
    }

    #SearchIcon img {
        width: 22px;
        height: 22px;
    }

@media (max-width: 600px) {

    .search-container {
        width: 90%;
        padding: 4px 10px;
    }

    #SearchIcon {
        width: 36px;
        height: 36px;
    }
}

