@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
* {
  font-family: 'Poppins', sans-serif;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(1, 88, 6); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #7cf2ad; 
}
*{
    font-family: 'Poppins' , sans-serif;
}
body {
  overflow-x: hidden;
}
#calendar {
  background-color: #fff; /* White background for the calendar */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#add-event {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.fc-content {
  background-color: #b5ffdb; /* Soft green for the event content */
  border: 1px solid #61a897; /* Lighter green border */
}
.fc-title {
  color: #34495e; /* Dark text color for the event title */
}
/* navbar style */
.logo img {
	height: 50px;
	width: 80px;
  }
.navbar {
	padding: 30px;
	background-color: #75975e;
  height: auto;
  }
#mynav{
    padding: 30px;
}
  .navbar a {
	color: #75975e;
  }
  .navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  /* Dropdown menu styles */
  .navbar a:not(.logo):hover {
	background-color: #ddd;
	color: black;
  }
  
  .dropdown-content {
	background-color: #75975e;
  }
  
  .dropdown-content a {
	color: black;
  }
  
  .dropdown-content a:hover {
	background-color: #c9c9c9;
	color: black;
  }
  
   /* Footer styles */
  footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #87ab69;
    height: auto;
    font-family: "Open Sans";
    color: #fff;
    width: 100%;
    }
    
    .footer-content {
    max-width: 1170px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    }
    
    .footer-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
    }
    
    .footer-content p {
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    }
    
    /* Social links in the footer */
    .socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
    }
    
    .socials li {
    margin: 0 10px;
    }
    
    .socials a {
    text-decoration: none;
    color: #fff;
    }
    
    .socials a i {
    font-size: 1.1rem;
    transition: color 0.4s ease;
    }
    
    .socials a:hover i {
    color: #c5b5b5;
    }
    
    /* Footer bottom section */
    .footer-bottom {
    background: #648354;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    }
    
    .footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
    }
    
    .footer-bottom span {
    text-transform: uppercase;
    opacity: 0.4;
    font-weight: 200;
    }
   
    :root {
      --container-height: 600px;
      --contaier-width: 400px;
      --header-height: 150px;
    }
    
    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    body {
      width: 100vw;
      height: 100vh;
      /* display: flex; */
      align-items: center;
      justify-content: center;
    }
    
    .container2 {
      background-color: rgb(121, 255, 186);
      width: var(--contaier-width);
      height: var(--container-height);
      position: relative;
      overflow: hidden;
      margin-top: 140px;
      margin: auto;
    }
    header {
      width: 100%;
      height: var(--header-height);
      background-size: cover;
      border-radius: 5px 5px 0 0;
    }
    .header {
      width: 100%;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #160000;
    }
    .new-todo {
      width: 100%;
      height: 50px;
      padding: 0.25rem 0;
    }
    .new-todo form {
      display: flex;
      align-items: center;
    }
    .new-todo form input {
      flex: 1;
      height: 40px;
      background-color: transparent;
      border: none;
      border-right: 0px;
      outline: transparent;
      padding-left: 0.5rem;
      font-size: 1rem;
      color: #160000;
    }
    .new-todo form button {
      width: 60px;
      height: 40px;
      font-size: 1rem;
      background-color: transparent;
      color: rgb(255, 247, 0);
      border: none;
      border-left: 0px;
      cursor: pointer;
      
    }
    .new-todo form button:hover {
      text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.8);
    }
    
    #todos-list {
      height: calc(var(--container-height) - var(--header-height));
      background-color: #fff;
      padding: 0.5rem;
      border: 1px solid rgb(219, 219, 219);
      overflow: scroll;
      border-radius: 0 0 5px 5px;
    }
    
    #todos-list .todo {
      display: flex;
      align-items: center;
      padding: 0.75rem 0.5rem;
      border-radius: 5px;
    }
    #todos-list .todo:hover {
      background-color: rgba(0, 0, 0, 0.1);
    }
    #todos-list .todo * {
      cursor: pointer;
      margin-right: 0.5rem;
    }
    #todos-list .todo i {
      font-size: 0.9rem;
    }
    #todos-list .todo p {
      flex: 1;
      word-break: break-all;
    }
    .checked {
      text-decoration: line-through;
      color: grey;
    }
    #todos-list .todo .bi-pencil-square {
      color: rgb(31, 177, 48);
    }
    #todos-list .todo .bi-trash {
      color: rgb(236, 82, 82);
      margin: 0;
    }
    
    .notification {
      position: absolute;
    
      width: calc(3 * var(--contaier-width) / 4);
      height: 60px;
    
      display: flex;
      justify-content: center;
      align-items: center;
    
      opacity: 0.9;
    
      border-radius: 8px;
      background-color: rgb(233, 81, 81);
      top: 10px;
      right: calc(-3 * var(--contaier-width) / 4);
    
      color: #fff;
    
      transition: 300ms right ease-in-out;
    }
    
    .notif-enter {
      right: 10px;
    }