body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
    min-height: 100vh;
}

.left-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.controls-panel {
    background-color: #232323;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}


p {
    margin: 0;
    
       color: #ccc;
    
       font-size: 1.5rem; /* Increased font size for better visibility */
}

.search-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

input {
    width: 100%;
    max-width: 80%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #000808;
    color: #ffffff;
}

.button-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

button {
    background-color: #005CB3;
    color: white;
    padding: 0.75rem 0.5rem;
    flex-grow: 1;
    border: none;
    border-radius: 4px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0096c7;
}

#map {
    width: 100%;
    height: 350px;
    border: 2px solid #444;
    border-radius: 8px;
}

#pano {
    width: 100%;
    height: 600px;
    border: 2px solid #444;
    border-radius: 8px;
}

select {
    width: 100%;
    max-width: 95%;
    padding: 0.7rem;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1.2rem;
    background-color: #000808;
    color: #fff;
    cursor: pointer;
    text-align: center;
}

/* Desktop-specific styles */
@media (min-width: 1024px) {
    .main-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 2rem;
    }
    .left-section {
        flex: none;
        width: 400px;
    }
    .controls-panel {
        max-width: 300px;
    }
    #pano {
        flex: 1;
        height: 100vh;
        max-height: 800px;
        width: auto;
    }
}

/* Mobile-specific styles for portrait and landscape */
@media screen and (max-width: 1023px) {
    /* Portrait mode (mobile default) */
    .main-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    .left-section {
        max-width: 100%;
        gap: 1rem;
    }
    #map {
        height: 300px;
    }
    #pano {
        height: 800px;
    }

    /* Landscape mode (horizontal) */
    @media (orientation: landscape) {
        .main-container {
            flex-direction: row;
            align-items: flex-start;
            padding: 1rem;
        }
        .left-section {
            flex-direction: column;
            width: 40%;
            gap: 1rem;
        }
        #map {
            height: 200px;
        }
        #pano {
            width: 60%;
            height: 500px;
        }
    }
}
.logo-container {
text-align: center; /* Centers the image horizontally */

margin-bottom: -2rem; /* Adds some space below the logo */

}
.logo-image {
max-width: 300px; /* Sets the maximum width of the logo. Adjust this value as needed. */
height: auto; /* Maintains the image's aspect ratio to prevent distortion */

}