﻿.search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ccc;
}

    .search-box input {
        border: none;
        outline: none;
        padding: 10px 15px;
        width: 180px;
        font-size: 14px;
    }

    .search-box button {
        background: #1f5fbf;
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
    }

        .search-box button:hover {
            background: #174a96;
        }
