body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    color: white;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.status-message {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

#locBtn {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 12px;
    background: #f39c12;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

input, select {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    flex: 1;
    min-width: 120px;
}

button {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-search { background: #fff; color: #1e3c72; }
#downloadBtn { background: #27ae60; color: white; }

.day {
    background: rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
}

.time-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.rain-text { color: white; font-weight: bold; text-align: right; }