body {
    background-color: #0f172a;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.card {
    background: #1e293b;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    text-align: center;
    width: 360px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #334155;
    background: #0f172a;
    color: white;
    outline: none;
}

button {
    padding: 10px 15px;
    border: none;
    background: #3b82f6;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #2563eb;
}

.result-box {
    margin-top: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #0f172a;
    transition: 0.5s;
}

#weatherIcon {
    font-size: 50px;
    margin: 10px 0;
}

#temp {
    margin: 5px 0;
    font-size: 36px;
}

hr {
    border: 0;
    height: 1px;
    background: #334155;
    margin: 15px 0;
}

.advice-box h4 {
    margin: 0 0 5px 0;
    color: #38bdf8;
}

.hidden {
    display: none;
}