body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

h1 {
    font-size: 28px;
    color: #0277bd;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

#searchBox {
    width: 100%;
    max-width: 580px; /* Ensures it stays within the container */
    padding: 15px;
    border: 2px solid #0288d1;
    border-radius: 6px;
    font-size: 18px;
    color: #0277bd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Ensures padding is included within width */
    transition: border-color 0.3s ease;
}

#searchBox:focus {
    border-color: #01579b;
    outline: none;
}

#suggestions {
    margin-top: 20px;
    text-align: left; /* Aligns the suggestions to the left */
}

#suggestions div {
    padding: 15px;
    background-color: #e3f2fd;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 16px;
    color: #01579b;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#suggestions div:hover {
    background-color: #bbdefb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

h4 {
    font-size: 14px;
    color: #01579b;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    #searchBox {
        font-size: 16px;
    }

    #suggestions div {
        font-size: 14px;
    }
}
