body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffe4e1 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #000;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
    animation: fadeIn 0.5s ease-in-out;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffb6c1;
    margin-bottom: 1rem;
}

.hidden { display: none; }

button {
    background-color: #ffb6c1;
    color: black;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.2s;
}

button:hover { transform: scale(1.05); }

.time { color: #d02090; font-size: 1.5rem; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.location-box {
    background: #fdf2f4;
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    border: 1px dashed #ffb6c1;
}

.maps-button {
    display: inline-block;
    background-color: #4285F4; /* Color azul de Google Maps */
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: bold;
}

.maps-button:hover {
    background-color: #357ae8;
}