body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    transition: 1s;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    color: white;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;

    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 15px;

    box-shadow: 0px 4px 20px rgba(0,0,0,0.4);
}

input, button {
    padding: 10px;
    margin: 10px;
    width: 80%;
    border-radius: 8px;
    border: none;
}

button {
    background: #4facfe;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #00c6ff;
}

.place-img {
    width: 300px;
    margin-top: 20px;
    border-radius: 10px;
    display: none;
}

#map {
    height: 300px;
    width: 100%;
    border-radius: 10px;
}

/* Suggestions */
#suggestionsBox {
    background: white;
    width: 80%;
    margin: auto;
    border-radius: 10px;
}

#suggestionsBox div {
    padding: 8px;
    cursor: pointer;
}

#suggestionsBox div:hover {
    background: #eee;
}

/* 🌙 Dark Mode */
.dark {
    background: #121212;
    color: white;
}

.dark .card {
    background: #1e1e1e;
    color: white;
}

.dark input {
    background: #333;
    color: white;
}

.dark button {
    background: #333;
}

/* Footer */
footer {
    text-align: center;
    color: white;
    padding: 10px;
}
