* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #74b9ff, #045a9b);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
}

.search-container {
    display: flex;
    gap: 10px;
    margin: 1.5rem 0;
    
}

.input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

#calcBTN {
    padding: 12px 20px;
    background: #0984e3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    display: flex;
}

.weather-display {
    text-align: center;
    margin: 2rem 0;
}

.error-message {
    color: #e74c3c;
    text-align: center;
    margin: 1rem 0;
    display: none;
}

#result {
    font-family: 'Arial', sans-serif;
    font-size: larger;
    display: flex;
    align-items: center;
    justify-content: center;
}