@charset "utf-8";
/* CSS Document */
/* styles.css */

/* General styling for the entire page */
body {
	font-family: Arial, sans-serif;
	background-color: white;
	margin: 0;
}

		.index { 
			color: #AA205C;
			transition: color 0.3s ease;
		}

		.index: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 */		
		}	

.wrapper {
	max-width: 1100px;
	margin: 15px auto;
}

/* Calendar container */
.container-calendar {
	background: rgba(0, 0, 0, 0);
	padding: 15px;
	border-radius: 20px;
	max-width: 900px;
	margin: 0 auto;
	overflow: auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: space-between;
	animation: animated-border-glow 8s infinite linear;
}
.index { 
			font-family: 'Courier New', monospace;
			font-weight: bold;
			color: #AA205C;
			transition: color 0.3s ease;
		}

		.index:hover { 
			font-family: 'Courier New', monospace;
			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 */		
		}

/* Event section styling */
#event-section {
	padding: 10px;
	background: rgba(0, 0, 0, 0.1);
	margin: 20px 10px;
	border: 1px none;
	border-radius: 20px;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#event-section:hover {
	animation: animated-border-glow 8s infinite linear;
	transition: 0.2s all;
	transform: scale(1.05);
}

.container-calendar #left h1 {
	text-align: center;
	margin: 20px 10px;
	padding: 10px 0;
}

#event-section h3 {
	font-size: 18px;
	margin: 0;
}

#event-section input[type="date"] {
	margin: 10px 0;
	padding: 5px;
	width: 80%;
}

#event-section button {
	background: #AA205C;
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
}

.event-marker {
	position: relative;
}

.event-marker::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background-color: red;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	left: 0;
}

/* event tooltip styling */
.event-tooltip {
	position: absolute;
	background-color: rgba(234, 232, 232, 0.763);
	color: black;
	padding: 10px;
	border-radius: 4px;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	transition: all 0.3s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.event-marker:hover .event-tooltip {
	display: block;
}

/* Reminder section styling */
#reminder-section {
	padding: 10px;
	background: rgba(0, 0, 0, 0.1);
	margin: 20px 10px;
	border: 1px none;
	border-radius: 20px;
}
#reminder-section:hover {
	animation: animated-border-glow 8s infinite linear;
	transition: 0.2s all;
	transform: scale(1.05);
}

#reminder-section h3 {
	font-size: 18px;
	margin: 0;
}

#reminderList {
	list-style: none;
	padding: 0;
}

#reminderList li {
	margin: 5px 0;
	font-size: 16px;
}

/* Style for the delete buttons */
.delete-event {
	background: rgba(170, 32, 92, 0.5);
	color: #1e1e1e;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
	margin-left: 10px;
	align-items: right;
    outline: none;
    transition: 0.2s all;
}
	.delete-event:hover {
		border: 1px none;
        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: rgb(237, 19, 19);
		animation: animated-border-glow 8s infinite linear;
	}
	.delete-event:active {
			transform: scale(0.92);
            /* Scaling button to 0.98 to its original size */
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
	}

/* Buttons in the calendar */
.button-container-calendar button {
	cursor: pointer;
	background: #AA205C;
	color: #fff;
	border: 1px solid #AA205C;
	border-radius: 4px;
	padding: 5px 10px;
}

/* Calendar table */
.table-calendar {
	border-collapse:collapse;
	width: 100%;
}

.table-calendar td,
.table-calendar th {
	padding: 5px;
	border: 1px none;
	color: #AA205C;
	text-align: center;
	vertical-align: top;
	background: rgba(0, 0, 0, 0);
}

/* Date picker */
.date-picker.selected {
	background-color: rgba(170, 32, 92, 0.5);
	font-weight:bold;
	outline: 1px dashed #AA205C;
}

.date-picker.selected span {
	border-bottom: 2px solid #AA205C;
}

/* Day-specific styling */
.date-picker:nth-child(1) > * {
	color: red;
	/* Sunday */
}

.date-picker > * {
	color: #AA205C;
	/* all day */
}
.date-picker:nth-child(7) > * {
	color: red;
	/* Friday */
}


/* Hover effect for date cells */
.date-picker:hover {
	background-color: rgba(170, 32, 92, 0.5);
	color: white;
	cursor: pointer;
}

/* Header for month and year */
#monthAndYear {
	text-align: center;
	margin-top: 0;
}

/* Navigation buttons */
.button-container-calendar {
	position: relative;
	margin-bottom: 1em;
	overflow: hidden;
	clear: both;
}

#previous {
	float: left;
	transition: 0.2s all;
}
	#previous: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;
	}
	#previous: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 */
	}

#next {
	float: right;
}
	#next: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;
	}
	#next: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 */
	}

/* Footer styling */
.footer-container-calendar {
	margin-top: 1em;
	border-top: 1px solid #dadada;
	padding: 10px 0;
	color: #AA205C;
	font-weight:bold;
}

.footer-container-calendar select {
	cursor: pointer;
	background: rgba(170, 32, 92, 0.5);
	color: #1e1e1e;
	border: 1px solid #bfc5c5;
	border-radius: 3px;
	padding: 5px 1em;
}

input[type=text], input[type=date]{
  width: 140px;
  box-sizing: border-box;
  border: 2px none;
  outline:none;
  border-radius: 20px;
  font-size: 16px;
  background-color:rgba(170, 32, 92, 0.5);
  background-position: 20px 20px; 
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  transition: width 0.4s ease-in-out;
}

input[type=text]:hover,focus {
  width: 150px;
  transition: 0.2s all;
  transform: scale(1.07);
}


input[type=date]:hover {
  width: 150px;
  transition: 0.2s all;
  transform: scale(1.07);
}

    .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 ease;
      }
      table tr:nth-child(odd) {
        background-color: gainsboro;
      }

      .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;
      }

 .btn {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 17px;
        background:#fff;
        outline: none;
        color: black;
        border: none;
        cursor: pointer;
        border-radius: 20px;
      }
.header {
        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: #FFFFFF;
        padding: 10px;
        font-family: google;
        font-size: 25px;
      }
	  
	       .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 */
        }
		
	img {
        	border-radius: 10px;
        	margin: 5px;
        	width: 90%;
      	}
		
.s-logo {
	border-radius: 10px;
	margin-top: 10px;
	max-width:40px;
	max-height: 90%;
	float:left;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
	.s-logo:hover {
			animation: animated-border-glow 8s infinite linear;
			transition: 0.2s all;
			transform: scale(1.1); 
		 }	
		
@media screen and (max-width: 640px) {
		input[type=date] {
          font-size: 15px;
          padding: 7px;
          border-radius: 20px;
		  outline:none;
          border: 1px none;
          width: 90%;
          text-align: center;
        }
		input[type="text"] {
          font-size: 15px;
          padding: 10px;
		  margin: 2px;
          border-radius: 20px;
		  outline:none;
          border: 1px none;
          width: 75%;
          text-align: center;
        }
		input[type="text"], input[type=date]:focus, hover {
  			transition: 0.2s all;
  			transform: scale(1.07);
        }
		
		.container-calendar {
			background: rgba(0, 0, 0, 0);
			padding: 15px;
			max-width: 700px;
			border-radius: 20px;
			margin: 0 auto;
			overflow: auto;
			box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
			display: flex;
			justify-content: space-between;
		}
		
		.wrapper {
			max-width: 700px;
			margin: 15px auto;
		}

		.table-calendar td,
		.table-calendar th {
			padding: 5px;
			border: 1px none;
			color: #AA205C;
			text-align: center;
			vertical-align: top;
			font-size:15px;
			background: rgba(0, 0, 0, 0);
		}		

	.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 ease;
      }

      .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;
      }

 .btn {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 8px;
        background:#fff;
        outline: none;
        color: black;
        border: none;
        cursor: pointer;
        border-radius: 10px;
      }
	  
	  .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 */
        }		        
}

@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%;
  }
}