/* CSS Document */



    
	
		/* full-screen overlay */
		#preloader {
		  width: 100%; height: 400px;
		  background: #111;
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  justify-content: center;
		  color: #fff;
		  z-index: 9999;
		  transition: opacity 0.5s ease;
		}
		
		/* clapperboard container */
		.clapperboard {
		  width: 100px;
		  height: 60px;
		  position: relative;
		  perspective: 400px;
		  margin-bottom: 1rem;
		}
		
		/* the "lid" of the clapperboard */
		.clapper-lid, .clapper-base {
		  width: 100%;
		  position: absolute;
		  left: 0;
		}
		.clapper-lid {
		  height: 30%;
		  top: 0;
		  background: repeating-linear-gradient(
			-45deg,
			#fff 0 10%,
			#333 10% 20%
		  );
		  transform-origin: bottom left;
		  animation: clap 1.5s ease-in-out infinite;
		}
		
		/* the bottom board */
		.clapper-base {
		  height: 70%;
		  top: 30%;
		  background: #333;
		  box-shadow: inset 0 0 0 4px #aaa;
		}
		
		/* lid "clap" animation */
		@keyframes clap {
		  0%,20%,40%,60%,80%,100% { transform: rotate(0deg); }
		  10%,50%            { transform: rotate(-25deg); }
		}
		
		#preloader p {
		  font-size: 1.1rem;
		  letter-spacing: 0.5px;
		}
	
	
	
    
    
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f5f5f5;
        }

        /* Original content styles */
        .panel-body {
            background: white;
            border: none;
            margin: 0;
            padding: 0px;
            border-radius: 5px;
        }

        .panel-answer {
            margin-bottom: 15px;
        }

        .ImgPDiv {
            margin: 10px 0;
        }

        .ImagePrompt, .Narration {
            width: 100%;
            min-height: 60px;
            margin-bottom: 10px;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .ImgP {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .myaudio {
            width: 266.66px;
            margin-top: 10px;
        }

        /* Slideshow styles */
        .slideshow-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .slideshow-content {
            max-width: 90%;
            max-height: 90%;
            text-align: center;
            position: relative;
        }

        .slide {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(255,255,255,0.1);
        }

        .slide-narration {
            color: white;
            font-size: 18px;
            margin: 20px 0;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
			
		
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    font-size: 32px;			
			
			
        }

        .slide-audio {
            width: 100%;
            max-width: 500px;
            margin: 15px auto;
        }

        .slideshow-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .control-btn {
            background: rgba(255,255,255,0.2);

            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .control-btn:hover {
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
            transform: scale(1.05);
        }

        .control-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .slide-counter {
            color: white;
            font-size: 16px;
            background: rgba(255,255,255,0.2);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 1001;
            transition: transform 0.2s ease;
        }

        .close-btn:hover {
            transform: scale(1.2);
        }

        .start-slideshow-btn {
			
		/*	
            background: #007bff;
			background: linear-gradient(135deg, var(--primary), #764ba2);
            color: white;

            border: none;
            padding: 12px 24px;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
            margin: 20px 0;
            transition: background 0.3s ease;
			
		*/
			
			
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.39);
    position: relative;
			
			
			
			
			display:none;
        }



        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Navigation arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 24px;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .nav-arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow.prev {
            left: 30px;
        }

        .nav-arrow.next {
            right: 30px;
        }
      
select {
	margin-bottom: 10px;
	border-color: #cfcfcf;
	font-size: 16px;
	margin-left:4px;	
	margin-right:10px;	
    border-radius: 4px;
}	  

a {
	text-decoration:none;
	color:black;
	font-weight:bold;
}
	  