/* Full-width container */
.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevent horizontal scrolling */
    position: relative;
}

/* Full-screen map styling */
#map {
    height: 100vh; /* Full height of the viewport */
    width: 100vw; /* Full width of the viewport */
    border: none;
    margin: 0;
}

/* Buttons positioned on the top left of the map */
.left-buttons {
    position: absolute;
    top: 20px; /* Adjusts position to be slightly down from the top */
    left: 150px; /* Adjusts position to be slightly in from the left */
    display: flex;
    flex-direction: row; /* Align buttons horizontally */
    gap: 1rem;
    z-index: 1100; /* Ensure it appears above the map */
}

/* Enhanced Info Card styling */
.info-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #f9f9f9, #e0f7fa); /* Subtle gradient for engagement */
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: center;
    z-index: 1000; /* Ensure it appears above other elements */
    color: #333;
}

/* Bridge Icon Styling */
.info-card .bridge-icon {
    font-size: 2.5rem; /* Large icon size */
    color: #397d7d; /* Color to match the map theme */
    margin-bottom: 0.5rem;
}

/* Card Text Styling */
.info-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #397d7d; /* Match color theme */
}

.info-card img {
    width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #e0e0e0;
}

.info-card p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
}

/* Button styling */
.btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: white;
    background-color: #397d7d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #2e6666;
}
