* {
    font-family: 'Dancing Script', cursive;
}

.bg-wrapper {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.title {
    color: #fff;
    font-weight: 700;
}

/* Input */
.city-input {
    height: 45px;
    border-radius: 30px;
    text-align: center;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    border-radius: 50px;
    /* pill shape */
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Gradient backgrounds */
.btn-success {
    background: linear-gradient(45deg, #28a745, #85e085);
    color: white;
    border: none;
}

.btn-outline-info {
    background: linear-gradient(45deg, #17a2b8, #6dd0e0);
    color: white;
    border: none;
}

/* Hover Effects */
.btn-success:hover {
    background: linear-gradient(45deg, #3ecf5e, #b0f3aa);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-info:hover {
    background: linear-gradient(45deg, #33c1d9, #a0f0f5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Active / Click effect */
.btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Data Output */
.data {
    font-size: 1.1rem;
}

/* Map */
#map {
    display: none;
    margin-top: 15px;
    border-radius: 15px;
}