        

.bgimg-1 {
  background-position: center;
  background-size: cover;
  background-color: rgb(217, 241, 217);
  background-image: url("../img/venice.jpeg");
  background-blend-mode: darken;
  /* opacity: 50%; */
  min-height: 100%;
}


table { border-collapse: collapse; width:80% }
td { border: 1px solid black; padding: 5px;text-align: center; }
.cal-container{
          float: left;
          /* width: 32%; Adjust the width as needed */
          padding: 5px;
          /* opacity: 20%; */
          z-index: 1;
          background-color: #aed5ce;
      }
.active-mode{
  background-color: yellow;
}

/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
} */
        
body, html {
  height: 100%;
}


body{
  /* background: #1abc9c; */
  background-color: white;
  overflow: auto;
}

.container{
  max-width: 440px;
  padding: 0 20px;
  margin: 170px auto;
}

.clear_50 {

  opacity: 55%;
}

/* This is ==== */
body{
  /* background: #1abc9c; */
  background-color: rgb(181, 214, 210);
  overflow: auto;
}
::selection{
  background: rgba(26,188,156,0.3);
}
.container{
  max-width: 440px;
  padding: 0 20px;
  margin: 170px auto;
}
.wrapper{
  clear: left;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
}
.clear_50 {

  opacity: 55%;
}
.wrapper .title{
  /* height: 90px; */
  background: #16a085;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form{
  padding: 30px 25px 25px 25px;
  align-items: center;
  justify-content: center;
}
.wrapper form .row{
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}
.wrapper form .row input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .row input:focus{
  border-color: #16a085;
  box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
}
form .row input::placeholder{
  color: #999;
}
.wrapper form .row i{
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: #16a085;
  border: 1px solid #16a085;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .pass{
  margin: -8px 0 20px 0;
}
.wrapper form .pass a{
  color: #16a085;
  font-size: 17px;
  text-decoration: none;
}
.wrapper form .pass a:hover{
  text-decoration: underline;
}
.wrapper form .button input{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #16a085;
  border: 1px solid #16a085;
  cursor: pointer;
}
form .button input:hover{
  background: #12876f;
}
.wrapper form .signup-link{
  text-align: center;
  margin-top: 20px;
  font-size: 17px;
}
.wrapper form .signup-link a{
  color: #16a085;
  text-decoration: none;
}
form .signup-link a:hover{
  text-decoration: underline;
}

li {
  list-style-type: "  👉 ";
  /* list-style: " Task 👇"; */
}

.scroll-container {
  width: 300px; /* Adjust width as needed */
  height: 200px; /* Adjust height as needed */
  width: 90%;
  height: 80%;
  overflow-y: auto; /* Enables vertical scrolling */
  border: 1px solid #ccc; /* Optional: adds a border around the container */
  padding: 10px; /* Optional: adds some padding inside the container */
}

ul {
  list-style: none; /* Remove default bullets */
  /* padding-left: 20px; Add padding to position custom markers */
  margin: 0; /* Remove default margin */
  background-color: #ccf0e9;
}

ul li {
  position: relative;
  margin-bottom: 10px; /* Add some space between list items */
}

ul li::before {
  /* content: "👇"; */
  position: absolute;
  left: -20px; /* Adjust as needed */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Center vertically */
  font-size: 1.2em; /* Adjust size as needed */
  color: black; /* Change color as needed */
}

Ul li p {
  color: rgb(20, 2, 112);
  font-weight:  bold;
}

.task_list{
  clear:left;
  font-size: 1em;
  font-weight: 800;
  padding: 10px 0px 0px 1px;
}
.hidden {
  display: none;
}
#calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.day {
  padding: 20px;
  text-align: center;
}

.fortnight-0 {
  background-color: #FFDDC1;
}

.fortnight-1 {
  background-color: #82ea99;
}

.has-task {
  /* background-color: #ffcccc; Light red background */
  font-weight: bold;
  color: #ff0000; /* Red text */
}
@keyframes backgroundCycle {
  0% { background-color: pink; }
  50% { background-color: rgb(173, 226, 26); }
  100% { background-color: pink; }
}

.weekly-task {
  /* border-radius: 80%; */
  font-weight: bold;
  color: rgb(150, 12, 12);
  animation: backgroundCycle 5s infinite;
}
.today {
  background-color: #ffff00; /* Yellow background */
  border: 2px solid #ff0000; /* Red border */
}

.fortnightly-task {
  border-radius: 80%;
  font-weight: bold;
  color: rgb(212, 12, 12);
  animation: backgroundCycle 5s infinite;
  background-color: #77dbef; /* Light red background */
  color: #5016a7; /* Red text */
}
.monthly-task {
  background-color: #ee8946; /* Light red background */
  font-weight: bold;
  color: #8f0808; /* Red text */
}
.yearly-task {
  background-color: #f3fa3aff; /* Light red background */
  font-weight: bold;
  color: #ff0000; /* Red text */
}

.tasks_forHome {
  background-color: rgb(173, 226, 26);
}