* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    background: rgba(238, 97, 31, 0.927);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 350px;
    backdrop-filter: blur(10px);
}

h1 {
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-box input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.search-box button {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background: #00c6ff;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background: #00ff37;
}

.weather-card {
    margin-top: 20px;
}

.weather-card img {
    width: 80px;
}

.hidden {
    display: none;
}

#error {
    color: #ff6b6b;
    margin-top: 10px;
}

#loading {
    margin-top: 10px;
}