		/* FOTO UPLOAD SECTIE CSS */ 
    <style type="text/css">
		.upload-sectie {
			padding: 20px;
			margin: 20px auto;
			max-width: 1000px;
			background-color: rgba(255, 255, 255, 0.9);
			border-radius: 8px;
			box-shadow: 0 4px 10px rgba(0,0,0,0.3);
			font-family: Arial, sans-serif;
			clear: both;
		}
		.upload-btn {
			background-color: #c1121f; 
			color: white;
			padding: 12px 25px;
			border: none;
			cursor: pointer;
			font-size: 16px;
			font-weight: bold;
			border-radius: 5px;
			text-transform: uppercase;
		}
		.upload-btn:hover { background-color: #780000; }
		.upload-btn:disabled { background-color: #999; cursor: not-allowed; }
			
		#gallery {
			display: flex;
			flex-wrap: wrap;
			gap: 15px;
			margin-top: 20px;
		}
		.photo-container {
			position: relative;
			display: flex;
			flex-direction: column;
			align-items: center;
			width: calc(33.33% - 10px); 
			height: auto; 
			background: #fdfdfd;
			border: 1px solid #ddd;
			border-radius: 6px;
			padding: 8px;
			box-shadow: 0 2px 4px rgba(0,0,0,0.05);
			box-sizing: border-box;
		}
		.photo-container img {
			width: 100%;
			height: auto; 
			max-height: 250px; 
			object-fit: contain; 
			border-radius: 4px;
			display: block;
			cursor: zoom-in; 
		}
		.photo-caption {
			width: 100%;
			text-align: center;
			font-family: Arial, sans-serif;
			font-size: 14px;
			font-weight: bold;
			color: #333;
			margin-top: 10px;
			padding-bottom: 4px;
			white-space: normal; 
			overflow: visible;
			text-overflow: clip;
		}
		.delete-btn {
			position: absolute;
			top: 12px;
			right: 12px;
			background-color: rgba(0, 0, 0, 0.7);
			color: white;
			border: 1px solid white;
			border-radius: 50%;
			width: 25px;
			height: 25px;
			cursor: pointer;
			font-size: 12px;
			font-weight: bold;
			line-height: 22px;
			text-align: center;
			z-index: 10;
		}
		.delete-btn:hover { background-color: red; }

		/* LIGHTBOX POP-UP STYLING */
		.lightbox {
			display: none; 
			position: fixed;
			z-index: 9999; 
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.9); 
			align-items: center;
			justify-content: center;
			cursor: zoom-out;
		}
		.lightbox-content {
			max-width: 90%;
			max-height: 85%;
			border-radius: 4px;
			box-shadow: 0 4px 20px rgba(0,0,0,0.5);
			animation: zoomIn 0.2s ease-in-out;
		}
		.lightbox-close {
			position: absolute;
			top: 20px;
			right: 35px;
			color: #fff;
			font-size: 40px;
			font-weight: bold;
			cursor: pointer;
		}
		@keyframes zoomIn {
			from { transform: scale(0.9); opacity: 0; }
			to { transform: scale(1); opacity: 1; }
		}

		/* RESPONSIVE STYLING */
		@media screen and (max-width: 768px) {
			.photo-container {
				width: calc(50% - 8px) !important; 
			}
		}
		@media screen and (max-width: 480px) {
			.photo-container {
				width: 100% !important; 
			}
			.photo-container img {
				height: auto !important; 
				max-height: 250px;
				object-fit: contain;
			}
		}
	/* retro-lichtkrant CSS */

  	.retro-lichtkrant {
			width: 100%;
			overflow: hidden;
			white-space: nowrap;
			background: #000; 
			color: #fff; 
			font-family: monospace; 
			padding: 5px 0;
		}
		.lichtkrant-tekst {
			display: inline-block;
			padding-left: 100%;
			animation: scrollen 25s linear infinite;
		}
		@keyframes scrollen {
			0% { transform: translate3d(0, 0, 0); }
			100% { transform: translate3d(-100%, 0, 0); }
		}

