* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    /* display: flex; */
    justify-content: center;
    /*align-items: center;*/
    height: 100vh;
}

.search-container {
    /* background: #fff; */
     /*padding: 20px 30px;
    /*  border-radius: 12px; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
     /*width: 100%;*/
     /*max-width: 600px;*/
}

.search-box {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.search-box input {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-right: none;
     /* border-radius: 8px 0 0 8px;*/
    height: 48px;
}

.search-box input:focus {
    outline: none;
    border-color: #007BFF;
}

.search-box button {
    font-size: 16px;
    padding: 0 20px;
    border: 1px solid #007BFF;
   /* border-radius: 0 8px 8px 0;*/
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    height: 48px;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #0056b3;
}