body {
    main {
        display: relative;

        #map {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        #imagesContainer {
            position: absolute;
            top: 12px;
            left: 48px;
            z-index: 1000;
            padding: 0;
            align-items: self-start;
            display: flex;
            max-width: calc(100% - 400px);
            flex-wrap: wrap;

            form {
                background: rgba(255, 255, 255, 0.85);
                padding: 5.5px;
                border-radius: 3px;
                box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
                margin: 0 5px 0 0;

                h1 {
                    margin: 0;
                }

                input::-webkit-file-upload-button {
                    padding: 3px 14px;
                    background: #555;
                    color: white;
                    border: 1px solid #555;
                    border-radius: 3px;
                }

                input::-webkit-file-upload-button:hover {
                    background: white;
                    color: #555;
                    display: inline-block;
                    cursor: pointer;
                }
            }
        }
    }

    .leaflet-popup-content {
        img {
            max-width: 100%;
        }
    }
}