body{
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
          background-image: linear-gradient(135deg, #74ebd5, #acb6e5);
          height: 90vh;
          font-family: 'Work Sans', sans-serif;
        }
        .title{
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }
        .parent{
            min-width: 650px;
            
            border: 2px solid black;
            background-color: lightyellow;
            display: flex;
            padding: 10px 0;
            align-items: center;
            flex-direction: column;
             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
             animation: up 1.3s ease-in-out;

        }
         .todo{
            min-height: 100px;
            width: 80%;
            border: 2px solid black;
            margin: 10px;
            background-color: lightblue;
            border-radius: 12px;

           
        }
        
        .todo div{
                width: 95%;
                margin: 20px 4px;
                padding: 10px 0px 10px 4px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                word-break: break-word;
            }
            .todo div span:nth-of-type(2){
                                background-color: brown;
                                border-radius: 50px;
                                padding: 10px 4px;
                                display: flex;
                                align-items: center;
            }
            
            .todo div span:nth-of-type(2):hover{
                background-image: linear-gradient(to left, grey, red);
                  box-shadow: 0 6px 20px rgba(200, 10, 10, 0.4);
               transform: translateY(-2px);
                transition: .3s;
                cursor: pointer;
                color: white;
            }
            .todo div span:nth-of-type(1){
                                    background-color: white;
                                    border: 2px solid black;
                                    display: inline-block;
                                    width: 60%;
                                    padding: 18px;
                                    display: inline-block;
            }
        input:focus{
            outline: 1.5px solid black;
        }
       .modif{
            padding: 10px;
            width: 80%;
            border: 2px solid black;
            margin: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
            border-radius: 20px;
       }
       .modif .change{
            width: 50%;
            display: flex;
            justify-content: space-around;
            margin-bottom: 10px;
       }
       .add , .removeall{
            padding: 10px;
            height: 40px;
            border: 2px solid black;
            
            border-radius: 50px;
             background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
             box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);

       }
       
         .removeall:hover , .add:hover{
                transform: translateY(-2px);
                color: white;
                cursor: pointer;
                transition: .3s;
                border-radius: 50px;
                 box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);

         }
      
            
        
         .bar{
                width: 80%;
              position: relative;
         }
         .modif input{
                        width: 100%;
                        height: 35px;
                        padding-left: 10px;
                        margin: auto 0%;
                        border-radius: 60px;
                        overflow: auto;
         }
         .modif .ic{
            position: absolute;
            right: 4px;
            top: 5px;
            background-color: green;
            padding: 3px 6px;
            border-radius: 40px;
            cursor: pointer;
            display: none;
         }
         .modif .ic:hover{
            transform: scale(1.1);
            transition: .3s;
         }
         .modcheck{
            display: block !important;

         }
         .box{
            display: block !important;
            color: green;
            font-weight: bold;
         }
         input[type="checkbox"]{
                    width: 42px;
                    height: 18px;
                    outline: none;
         }
         .counter{
            width: 50%;
            border: 2px solid black;
            background-color: lightgrey;
            padding: 10px;
            font-weight: bold;
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
         }
         .counter input{
            width: 90%;
            margin-bottom: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 18px;
            border: none;
            
         }
         nav:hover{
            background-image: linear-gradient(to left, grey, red);
              box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
               transform: translateY(-2px);
               transition: .3s;
         }
         .no{
            display: none !important;
            
         }
         .filter{
                            display: flex;
                            padding: 10px;
                            align-items: center;
                            width: 50%;
                            text-align: center;

         }
         .sea{
            border: 3px solid red ;
            
         }
         .search{
            display: flex;
            align-items: center;
            column-gap: 10px;
                margin-top: 14px;
                margin-right: 70px;
         }
         .mod:hover{
            background-image: linear-gradient(to left, grey, red);
              box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
               transform: translateY(-2px);
               transition: .3s;
               color: white;
         }
         input[type="checkbox"]{
            cursor: pointer;
         }
                @keyframes up {
                    from {
                        opacity: 0;
                        transform: translateY(30px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                }
                }