/* MapTitleStyle.css */

/* Style for the map title container */
#mapTitle {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInTitle 1.2s ease-out;

    display: flex;            
    align-items: center;      
    gap: 10px;                
}

/* Email Styling */
#email {
    font-size: 14px;
    color: #ddd;
    margin-top: 5px;
    font-weight: normal;
}

/* Thumbnail styling */
#thumbnail {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Fade-in animation */
@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
