@charset "utf-8";
/* CSS Document */

        /* Custom styles for aesthetic enhancements */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        
        :root {
            --primary-color: #AA205c; /* Tailwind blue-500 */
            --danger-color: #B6C511; /* Tailwind red-500 */
        }
        
        body {
            font-family: 'Inter', sans-serif;
            /* Ensure the body background is white since the card is gone */
            background-color: #ffffff; 
        }

        .display-time {
            font-family: monospace;
            font-size: 3.5rem; /* Larger font for time */
            letter-spacing: -2px;
            font-weight: 600;
        }
		
		.timer-container {
			/* Mimics the dark background card */
			padding: 60px 40px;
			border-radius: 12px;
			display: flex;
			justify-content: center;
			align-items: center;
			position: relative; /* For circular progress bar if added */
			transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		}
			.timer-container:hover {
				/* Mimics the dark background card */
				transition: 0.2s all;
				transform: scale(1.01);
				animation: animated-border-glow 8s infinite linear;
			}	
			
		.top-lane {
			margin-bottom: 10vh;
			z-index: 1;
			box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
			text-align: center;
			width: 100%;
			position:fixed;
			left: 50%;
			transform: translate(-50%, 0);
			color: white;
			background-color: #AA205c;
			padding: 10px;
			margin-top: 0;
			margin-bottom: 10px;
			font-family: google;
			font-size: 25px;					
		}	
		
		.animated-sparkle {
		  /* No content property here */
			display: inline-block;
			font-size: 25px;
			border: none;
			border-radius: 20px;
			outline: none;
			transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		}	
		.animated-sparkle::before {
		  content: "✨"; /* This is where the content property belongs */
		  padding-right: 10px;
		  background-size: 800% auto;
		  background-image: linear-gradient(
			  90deg,
			  #2c67f2 0%,    /* Start with dark blue */
			  #62cff4 15%,    /* A smoother transition to aqua */
			  #000 45%,      /* Black now has a more defined position */
			  #B6C511 60%,    /* The yellow-green emerges */
			  #1a73e8 80%,    /* Transition to a new blue */
			  #62cff4 100%,    /* End with aqua to prepare for a smooth loop */
			  #62cff4 115%,
			  #000 145%,
			  #B6C511 160%,
			  #1a73e8 180%,
			  #62cff4 200%
			);
		  -webkit-background-clip: text;
		  -webkit-text-fill-color: transparent;
		  -webkit-animation: animated-text-color 2s linear infinite;
		  animation: animated-text-color 2s linear infinite;
		}

		.index { 
			font-family: 'Courier New', monospace;
			font-weight: bold;
			color: #AA205C;
			transition: color 0.3s ease;
		}

		.index:hover { 
			font-family: 'Courier New', monospace;
			cursor: pointer;
			font-weight: bold;
				/* Key properties for the AI effect */
			background-image: linear-gradient(
				90deg,
				#1a73e8, /* Blue */
				#34a853, /* Green */
				#000, 	/* black */
				#B6C511,
				#1a73e8, /* Blue again for a smooth loop */
				#34a853
			);
			background-size: 400% 100%; /* Make the gradient wider than the text */
				-webkit-background-clip: text; /* Clips the background to the text shape */
			background-clip: text;
			color: transparent; /* Makes the text itself transparent to show the background */
			animation: animated-text-color 4s infinite linear; /* New text color animation */		
		}
		
        .chat-container {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
			transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
			.chat-container:hover {
				-ms-overflow-style: none;  /* IE and Edge */
				scrollbar-width: none;  /* Firefox */
				animation: animated-border-glow 8s infinite linear;
				transition: 0.2s all;
				transform: scale(1.01);				
			}							
		
		.index-alert { 
			color: #AA205C;
			transition: color 0.3s ease;
		}

		.index-alert:hover { 
				/* Key properties for the AI effect */
			background-image: linear-gradient(
				90deg,
				#1a73e8, /* Blue */
				#34a853, /* Green */
				#000, 	/* black */
				#B6C511,
				#1a73e8, /* Blue again for a smooth loop */
				#34a853
			);
			background-size: 400% 100%; /* Make the gradient wider than the text */
				-webkit-background-clip: text; /* Clips the background to the text shape */
			background-clip: text;
			color: transparent; /* Makes the text itself transparent to show the background */
			animation: animated-text-color 4s infinite linear; /* New text color animation */		
		}	
		
.signup {
        border: 1px solid #AA205c;
        background: #AA205c;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 5px;
        cursor: pointer;
        outline: none;
        color: white;
        text-decoration: none;
        font-family: google;
        font-size: 18px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .signup:hover {
        border: 1px solid #AA205c;
        color: white;
        box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
          0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
          0 22.3px 17.9px rgba(0, 0, 0, 0.072),
          0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
        background:#AA205c;
		animation: animated-border-glow 8s infinite linear;
      }

 .btn {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 17px;
        outline: none;
        color: black;
        border: none;
        cursor: pointer;
        border-radius: 20px;
      }

.btnEffect {
            cursor: pointer;
            outline: none;
            transition: 0.2s all;
        }
        /* Adding transformation when the button is active */
          
        .btnEffect:active {
            transform: scale(0.98);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
        }
		
        .lap-result {
            padding: 1rem;
            border-radius: 1.5rem;
			max-height: 700px; /* or a specific height, e.g., height: 300px; */
    		overflow-y: auto; /* or overflow: auto; to enable both vertical and horizontal scrolling if needed */
        }		
	/* Styling for the scrollbar track */
	.lap-result::-webkit-scrollbar {
		width: 8px; /* Set the width of the scrollbar */
		height: 8px;
	}
	
	/* Styling for the thumb (the draggable part) */
	.lap-result::-webkit-scrollbar-thumb {
		background-color: #E4558B; /* A lighter gray color for the thumb */
		border-radius: 4px;
	}
	
	/* Styling for the track (the background of the scrollbar) */
	.lap-result::-webkit-scrollbar-track {
		background-color: #3e3e3e; /* A darker gray for the track */
	}				

        @media (max-width: 640px) {
            .display-time {
                font-size: 2rem;
				letter-spacing: -1px;
            	font-weight: 300;
            }
			
			.signup {
				border: 1px solid #AA205c;
				background: #AA205c;
				padding-left: 15px;
				padding-right: 15px;
				padding-top: 5px;
				padding-bottom: 10px;
				border-radius: 5px;
				cursor: pointer;
				outline: none;
				color: white;
				text-decoration: none;
				font-family: google;
				font-size: 8px;
				transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
			  }
		
			  .signup:hover {
				border: 1px solid #AA205c;
				color: white;
				box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
				  0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
				  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
				  0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
				background:#AA205c;
				animation: animated-border-glow 8s infinite linear;
			  }
		
		 .btn {
				padding-left: 15px;
				padding-right: 15px;
				padding-top: 5px;
				padding-bottom: 5px;
				font-size: 17px;
				outline: none;
				color: black;
				border: none;
				cursor: pointer;
				border-radius: 10px;
			  }
			  
			  .btnEffect {
					cursor: pointer;
					outline: none;
					transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
					transform: scale(1.01); 
				}
				/* Adding transformation when the button is active */
				  
				.btnEffect:active {
					transform: scale(0.87);
					/* Scaling button to 0.98 to its original size */
					box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
					/* Lowering the shadow */
				}		        
        }
		
        .tab-button.active {
            border-bottom: 4px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        .tab-button:hover {
			cursor: pointer;
			transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
			transform: scale(1.01); 			
            font-weight: 600;
			background-image: linear-gradient(
				90deg,
				#1a73e8, /* Blue */
				#34a853, /* Green */
				#000, 	/* black */
				#B6C511,
				#1a73e8, /* Blue again for a smooth loop */
				#34a853
			);
			background-size: 400% 100%; /* Make the gradient wider than the text */
				-webkit-background-clip: text; /* Clips the background to the text shape */
			background-clip: text;
			color: transparent; /* Makes the text itself transparent to show the background */
			animation: animated-text-color 4s infinite linear; /* New text color animation */	
        }		

        .action-button {
            transition: all 0.2s;
            /* Removed box-shadow */
        }

        .action-button:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        /* Custom alert box styling */
        .modal {
            transition: opacity 0.3s ease-in-out;
        }

.imgS {
        border-radius: 10px;
        margin: 1.7px;
        max-width:40px;
		max-height: 90%;
		float:left;
		transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		transform: scale(1.01); 
	 }
.imgS:hover {
		animation: animated-border-glow 8s infinite linear;
    	transition: 0.2s all;
		transform: scale(1.1); 
	 }	

@media print {
  #printPageButton {
    display: none;
  }
}
	 
/* Keyframes for the new animated border glow */
@keyframes animated-border-glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(100, 100, 255, 0.7); /* Blue */
    }
    25% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(100, 255, 100, 0.7); /* Green */
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(255, 100, 100, 0.7); /* Red */
    }
    75% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(255, 255, 100, 0.7); /* Yellow */
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(100, 100, 255, 0.7); /* Blue (back to start) */
    }
}

/* Define the keyframes for the text color */
@keyframes animated-text-color {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}