body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    overflow: hidden; /* To hide horizontal scrollbar */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.panorama::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110%;
    height: 110%;
    background-image: url('/api/get.php?cam_name=wim2'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    filter: blur(10px); /* Adjust the blur strength as needed */
}

.panorama {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Scale the image to fit within the container while maintaining aspect ratio */
}

.datetime {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 18px;
    white-space: nowrap; /* Prevent datetime text from wrapping */
}
