body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#map {
    width: 100vw;
    height: 80vh;
}

h1 {
    text-align: center;
    margin: 20px 0;
}

#cafe-details {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

#cafe-details.visible {
    transform: translateY(0);
}

#cafe-details h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

#cafe-details p {
    margin: 5px 0;
    font-size: 0.9em;
}

#cafe-details a {
    color: #007bff;
    text-decoration: none;
}

#close-details {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
} 