body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #e0e5ec;
}

.weather-container {
    width: 350px;
    padding: 30px;
    border-radius: 40px;
    background-color: #e0e5ec;
    box-shadow: 9px 9px 16px #a3b1c6,
                -9px -9px 16px #ffffff;
}

.search-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#city-input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1rem;
    color: #555;
    background-color: #e0e5ec;
    border-radius: 20px;
    box-shadow: inset 5px 5px 10px #a3b1c6,
                inset -5px -5px 10px #ffffff;
}

#search-btn {
    border: none;
    outline: none;
    background-color: #e0e5ec;
    color: #666;
    font-size: 1rem;
    font-weight: bold;
    padding: 15px 20px;
    margin-left: 10px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #a3b1c6,
                -5px -5px 10px #ffffff;
    transition: box-shadow 0.1s ease-in-out;
}

#search-btn:active {
    box-shadow: inset 5px 5px 10px #a3b1c6,
                inset -5px -5px 10px #ffffff;
}

.weather-info {
    text-align: center;
    color: #444;
}

#weather-icon {
    width: 100px;
    height: 100px;
    margin-top: 10px;
}

#temperature {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

#description {
    font-size: 1.2rem;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.app-link-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    background-color: #e0e5ec;
    box-shadow: 5px 5px 10px #a3b1c6,
                -5px -5px 10px #ffffff;
    transition: box-shadow 0.1s ease-in-out;
}

.app-link-btn:active {
    box-shadow: inset 5px 5px 10px #a3b1c6,
                inset -5px -5px 10px #ffffff;
}

footer {
    margin-top: 40px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #8895a7;
    text-align: center;
    box-shadow: inset 3px 3px 7px #a3b1c6,
                inset -3px -3px 7px #ffffff;
}

#suggestions-container {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    border-radius: 20px;
    background-color: #e0e5ec;
    box-shadow: inset 5px 5px 10px #a3b1c6,
                inset -5px -5px 10px #ffffff;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.1s ease-in-out;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: rgba(163, 177, 198, 0.2);
    }
