* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

h1 {
    margin-bottom: 15px;
}

.search {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.search input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.search button {
    padding: 10px;
    border: none;
    background: #4facfe;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.search button:hover {
    background: #007bff;
}



.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

.weather {
    display: none;
}

.weather img {
    width: 80px;
}

.details {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.details div {
    text-align: center;
}