        .main {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-container > form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .header-container {
            text-align: center;
        }

        .header-container > h1 {
            font-size: 50px;
            margin: 30px;
            text-shadow: 2px 2px rgb(200, 200, 200);
        }

        .custom-file-upload {
            height: 100px;
            width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 2px dashed #cacaca;
            background-color: rgba(255, 255, 255, 1);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }

        .custom-file-upload .icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .custom-file-upload .icon svg {
            height: 80px;
        }

        .custom-file-upload .text {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .custom-file-upload .text span {
            font-weight: 400;
            color: rgba(75, 85, 99, 1);
        }

        .custom-file-upload input {
            display: none;
        }

        .preview-container img {
            max-width: 100%;
            height: auto;
            margin: 10px;
            border-radius: 8px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        .preview-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1000px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            padding: 20px;
            border-radius: 10px;
            margin: 50px;
            background-color: rgba(255, 255, 255, 1);
        }

        .preview-container > img {
            height: 100px;
        }
        
        .upload-button {
            padding: 10px;
            width: 200px;
            border-radius: 10px;
            border: none;
            font-size: 15px;
            background-color: rgba(255, 255, 255, 1);
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
            cursor: pointer;
            color: #000000;
        }

        .uploaded-image-container {
            display: flex;
            flex-direction: column;
            width: 1300px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            padding: 20px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 1);
            margin-top: 30px;
            height: 480px;
        }

        .uploaded-image-container > h2 {
            margin: 10px;
            text-shadow: 2px 2px rgb(200, 200, 200);

        }

        .images {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            overflow-y: auto;
        }

        .images > img {
            height: 150px;
            width: 300px;
            margin: 5px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
            cursor: pointer;
        }

        .images > img:hover {
            transform: scale(1.05);
        }

        .gallery {
            width: 400px !important;
            height: 300px !important;
            object-fit: cover !important;
        }