@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
::selection{
  color: #ffff;
}
body{
  width: 100%;
  height: 100vh;
   overflow: hidden; 
  padding: 10px;
  background: linear-gradient(to bottom, #e7ff62 0%, #ffd768 100%);
}
.wrapper{
  background: rgba(255, 254, 170, 0.932);
  max-width: 400px;
  width: 100%;
  margin: 60px auto;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.9);
}


.wrapper header{
  font-size: 40px;
  font-weight: 600;
  text-align: center;

}
.wrapper .inputField{
  margin: 20px 0;
  width: 100%;
  display: flex;
  height: 45px;
}
.inputField input{
  width: 85%;
  height: 100%;
  outline: none;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 17px;
  padding-left: 15px;
  transition: all 0.3s ease;
}
.inputField input:focus{
  border-color: #d15e01;
}
.inputField button{
  width: 50px;
  height: 100%;
  border: none;
  color: black;
  margin-left: 5px;
  font-size: 21px;
  outline: none;
  background: linear-gradient(to bottom, #e7ff62 0%, #ffd768 100%);
  cursor: pointer;
  border-radius: 3px;
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}
.inputField button:hover,
.footer button:hover{
  background: linear-gradient(to bottom, #e7ff62 0%, #ffd768 100%);

}
.inputField button.active{
  opacity: 1;
  pointer-events: auto;
}
.wrapper .todoList{
  max-height: 100px;
  overflow-y: auto;
}
.todoList li{
  position: relative;
  list-style: none;
  height: 45px;
  line-height: 45px;
  margin-bottom: 8px;
  background: rgba(255, 254, 170, 0.932);
  border: 1px solid #d15e01 ;
  border-radius: 3px;
  padding: 0 15px;
  cursor: default;
  overflow: hidden;
  font-weight: 900;
  font-size: 16px;
}
.todoList li .icon{
  position: absolute;
  right: -45px;
  background: linear-gradient(to bottom, #e7ff62 0%, #ffd768 100%);
  width: 45px;
  text-align: center;
  color: black;
  font-weight: 900;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.todoList li:hover .icon{
  right: 0px;
}
.wrapper .footer{
  display: flex;
  width: 100%;
  margin-top: 20px;
  padding-left  : 120px;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  font-size: 16px;
}
.footer button{
  padding: 6px 10px;
  border-radius: 3px;
  border: none;
  outline: none;
  color: black;
  font-weight: 900;
  font-size: 16px;
  margin-left: 5px;
  background: linear-gradient(to bottom, #e7ff62 0%, #ffd768 100%);
  cursor: pointer;
  user-select: none;
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}
.footer button.active{
  opacity: 1;
  pointer-events: auto;
}


#footer {
    padding: 15px;
    color: black;
    font-size: 14px;
    position: fixed;
    left: 40%;
    bottom: 0;
    width: 300px;
    font-weight: 900;
    z-index: 9999;
    background: transparent;
  }
  
  #footer .copyright {
    text-align: center;
  }
  
  #footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: black;
  }
  
  @media (max-width: 1199px) {
  
    
#footer {
  padding: 15px;
  color: black;
  font-size: 14px;
  position: fixed;
  left: 20%;
  bottom: 0;
  width: 300px;
  font-weight: 900;
  z-index: 9999;
  background: transparent;
}

  }



::-webkit-scrollbar { width: 8px; height: 2px;}
::-webkit-scrollbar-button {  background-color: #0c1316; }
::-webkit-scrollbar-track {  background-color: #0c1316;}
::-webkit-scrollbar-track-piece { background-color: white;}
::-webkit-scrollbar-thumb { height: 20px; background-color: #0c1316; border-radius: 3px;}
::-webkit-scrollbar-corner { background-color: #0c1316;}
::-webkit-resizer { background-color: #0c1316;}