.srp-search-box {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px;
    border: 1px solid #d9e3f0;
    border-radius: 10px;
    text-align: center;
    background: #fff;
}

.srp-logo {
    max-height: 90px;
    margin-bottom: 15px;
}

/* Force consistent layout for inputs & select */
.srp-search-box input,
.srp-search-box select {
    width: 100%;
    height: 46px;
    padding: 12px;
    margin-bottom: 12px;

    border-radius: 6px;
    border: 1px solid #b7c7dd;

    font-size: 15px;
    box-sizing: border-box;

    display: block;          /* 🔥 IMPORTANT */
    background-color: #fff;
}

/* Fix select centering issue */
.srp-search-box select {
    text-align: left;        /* 🔥 IMPORTANT */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px; /* space for arrow */
}

.srp-search-box button {
    width: 100%;
    height: 50px;              /* slightly bigger */
    background: #1e63b8;       /* same blue */
    color: #ffffff;

    border: none;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 400;

    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.srp-search-box button:hover {
    background: #174f94;       /* darker blue on hover */
}

.srp-search-box button:active {
    transform: scale(0.98);    /* subtle click feedback */
}


