/* Basic Styling */
body, html {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

/* Back to the Base button */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: grey;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 10;
}

/* Main Content Container */
.content {
    max-width: 1100px; /* Slightly increased max width */
    width: 95%;
    text-align: center;
    margin-top: 50px;
}

/* Header Styling */
.content h1 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Two-Column Layout */
.two-column {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

/* Map and Image Container */
.map-container,
.image-container {
    flex: 1;
    height: 450px; /* Slightly increased height */
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
        align-items: center;
    }

    .map-container,
    .image-container {
        width: 90%; /* Full width on mobile */
        height: 300px; /* Reduced height on smaller screens */
    }

    .content h1 {
        font-size: 1.25rem;
    }
}
