/* background-color:blue; */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    border-radius: 8px;
    font-family: "Roboto", sans-serif;

}
body{
    /* background-color:blue; */
    background-image:url("bg.jpg") ;
    background-repeat: no-repeat;
background-size: contain;

    /* background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); */

 background-attachment: fixed;
height:100vh;
justify-content: center; 
 align-items:center;
display: flex; 


}
.CONTAINER{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    /* margin-top: 40px; */
    margin-bottom:90px;
    margin:100px auto 60px auto;
    max-width: 700px;
    width: 80%;
    /* position: relative; */
    /* background-color: #fbc2eb; */
    height:auto;
    /* width:fit-content; */
    /* background:linear-gradient(purple,pink,lightblue); */
    box-shadow: 4px 5px 6px;
    
  /* background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05)); */


/* background: */

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: fill; /* Or try 'cover' / 'contain' */
  z-index: -1;
}

    

}
.statscont{
    padding:30px;
    padding-top: 60px;
    border-radius: 10px;
    border:6px solid rgb(20, 20, 20);
    display:flex;
    justify-content: space-between;
    align-items:center;
    /* background:purple; */

background: rgba(255, 255, 255, 0.1); /* semi-transparent glass */
backdrop-filter: blur(20px);
/* -webkit-backdrop-filter: blur(10px); for Safari support */
border: 1px solid rgba(255, 255, 255, 0.3); /* softer glassy border */
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* subtle shadow */
color:aliceblue;

    gap:10px;
    width:100%;



}

#progressBar{
    width:100%;
    height:10px;
    
    background:linear-gradient(lightblue);
    border-radius:5px ;
    margin-top:30px;

}


#progress{
    width:100%;
    height:10px;
    background:linear-gradient(pink,blue);
    border-radius: 10px;
    transition:all 0.3s ease;

}


#number{
    width: 100px;
    height: 100px;
    background-color: rgba(11, 163, 239, 0.2);
    align-items:center;
    border-radius: 50px;
    justify-content:center;
    text-align: center;
    font-size: 30px;
    font-weight:900;
     margin-top:0px;
     display: flex;
     /* padding:30px; */
}

.details{
   
    width: 100%;
}





form{
    margin-top: 50px;
    width:90%;
    display: flex;
    max-width: 100%;
    padding:20px;
    display: flex;
    text-align: center;
    /* border-bottom:0.5px solid white; */
    gap:10px;
    flex-wrap: wrap;
    
}

input{
    flex:1;
    padding:8px;
    outline:none;
    padding:12px;
    /* background:; */
    color:brown;
    border:1px solid violet ;
    margin-block:1px;
    border-radius:10px;
    font-size:16px;
        border-bottom:0.5px solid ;
        box-sizing: border-box;
        /* min-width:60%; */
        width: 100%;
        /* margin-left: 1px; */
  

}




button {

  padding: 3px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
  background: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  box-shadow:
    0 -0.125em 0.25em rgba(0, 0, 0, 0.2),
    0 0.25em 0.25em pink,
    0 0 1em rgba(255, 255, 255, 0.2) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  color: aliceblue;
  text-shadow: 0.03em 0.03em rgba(255, 255, 255, 0.3),
               -0.03em -0.03em rgba(0, 0, 0, 0.3);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border: none;
  padding-left: 2px;
  padding-right: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

button:hover {
  background-color: rgba(255, 192, 203, 0.3); /* light pink tone */
}

button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1.5em;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

/* Sheen/shine effect */
button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}



button:hover{
      background-color:lightblue;
}
#tasks{
  display: flex;
  flex-direction: column;
  gap:10px;
  /* margin-top: 30px;
  margin-bottom: 3px; */
  width: 99%;
  list-style:none;
  /* flex-wrap: wrap; */
      word-wrap: break-word;
}

.taskItem{
  display:flex;
  background: rgba(255, 255, 255, 0.2); 
backdrop-filter: blur(20px);

border: 1px solid rgba(255, 255, 255, 0.3); 
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); 
color:#000;
  padding: 10px;
  justify-content:space-between;
  align-items:center;
  border: 2px solid white;
  flex-wrap: wrap;
  white-space: normal;
  overflow-wrap: break-word; 
  word-wrap: break-word; 
    width: 100%; 

}



.task{
  display: flex;
  align-items: center;
  /* justify-content: flex-start; */
  
  gap: 10px;
  

}

.task p {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

.task input{
  width: 20px;
  height: 20px;
}
.taskItem img{
  width:24px;
  height: 24px;
  cursor: pointer;
  margin: 0 10px;
  /* margin-right: 10px; */
}
    
 










/* Add this to your CSS */
.glow-effect {
  animation: glow 2s ease-in-out forwards;
  box-shadow: 0 0 30px rgba(47, 157, 226, 0.8), 0 0 60px rgba(173, 216, 230, 0.6);
  background: linear-gradient(to right, #4510cc, #e30505);
  border-radius: 20px;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(255,255,255,0);
    background-color: transparent;
  }
  50% {
    box-shadow: 0 0 30px rgba(214, 15, 144, 0.8), 0 0 60px rgba(22, 24, 24, 0.6);
    background-color: #e0ffff;
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    background-color: #c9dcdc;
  }
}
