.pac-container {
    z-index: 1055 !important; /* Ensure it's above the Bootstrap modal */
    position: absolute !important;
}

#map {
    width: 100%;
    height: 300px; /* Set the map height */
    margin-top: 10px;
    border-radius: 8px;
    display: none; /* Hide map initially */

}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
h1 {
    font-size: 2.5em;
    color: #4a4f5a;
    margin-top: 50px;
}
p {
    font-size: 1.2em;
    color: #6c757d;
}
.highlight {
    color: #8000ff;
    font-weight: bold;
}
.heart {
    color: #ff2e63;
}
.how-it-works {
    margin-top: 30px;
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    background-color: #000000;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}
.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}
.icon {
    font-size: 40px;
}
#map-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.confirm-container {
    background: white;
    padding: 15px;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: none; /* Hidden by default */
}
.confirm-btn {
    background-color: #e91e63;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}
.confirm-btn:hover {
    background-color: #d81b60;
}