* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

/* header */
header {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    margin: 5% 0 5% 0;
    padding: 10px 2em 0 2em;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-text {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.app-navbar ul  {
    display: inline-flex;
    gap: 36px;
    margin: 10px 0 0 0 ;

}

ul li {
    list-style: none;
    font-family: "Inter";
    font-size: 24px;
}

a {
    text-decoration: none;
    color: #000;
}

#task-entry {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 5%;
}

.task-name {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-family: 800px;
}

#input-entry {
    width: 50%;
    
}
/* input box */
#input-entry #input-entry-value {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    padding: 10px;
    border: 1px solid #A3A3B9;

}

#input-entry-value:focus {
    outline: #6e6e72;
    box-shadow: 0 0 5px #affbed;
}


/* all btns */
#task-status-btn {
    display: inline-flex;
    flex-wrap: wrap;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    gap: 24px;
    margin: 6px 0 0 0;
}

.btn {
    width: 92px;
   height: 42px;
}

/* btn individually*/

.active-btn {
    width: 92px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background-color: #54C1AD;
    color: #fff;
   
}
.active-task-btn {
    width: 92px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background-color: #54C1AD;
    color: #fff;
   
}


.pending-btn {
    background-color: #FDBF46;
    color: #fff;
}

.closed-btn {
    background-color: #F06A6D;
    color: #fff;
}

.closed-task-btn {
    width: 87px;
        height: 42px;
        border: none;
        border-radius: 10px;
        background-color: #F06A6D;
        color: #fff;
}
.add-btn {
    background-color: #5B6097;
    color: #fff;
}

.control-btn  {
    display: flex;
    gap: 20px;
   
}
/*  pending status btn*/
.pending-task-btn {
    width: 87px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background-color: #FDBF46;
    color: #fff;
}
.control-btn button {
         width: 32px;
        height: 42px;
        border: none;
        background-color: none;
        
}


/* Icons */

.trash-icon{
    background: none;
}
.trash-icon:hover {
    cursor: pointer;
    margin-top: -15px;
}
.circle-icon {
       float: left;
       margin-right: 10px;

}
.pencil-icon {
    background: none;
}

.pencil-icon:hover {
         cursor: pointer;
        margin-top: -15px;
}



.active-title, .pending-title, .closed-title {
    display: inline-flex;
    width: 94px;
    height: 42px;
    padding: 9.5px 0 9.5px 0;
    justify-content: center;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 600px;
    color: #fff;
    border: 1px solid #A3A3B9;
    border-radius: 1187.5px;
 
}

.active-title{
    background-color: #54C1AD;
}
.pending-title {
        background-color: #FDBF46;
    }
.closed-title {
        background-color: #F06A6D;
    }

hr {
     position: relative;
     margin: -30px 0 57px 93px;
     width: 90%;
     color: #A3A3B9;

}

h6 {
     font-size: 10px;
     text-align: center;
     color: #A3A3B9;
}

#task-creation-date {
    border: none;
}
#task-delivery-date {
    border: none;
}

/* Active task */



#active-task ul li, #closed-task ul li {
  display: flex;
  justify-content: space-between;
  list-style-type: disc;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 19px;


}

#active-task ul, #closed-task ul {
    border: 1px solid #A3A3B9;
        border-radius: 44px;
        padding: 19.5px 36px 19.5px 36px;
}


/* Pending task */



#pending-task .circle-icon{
    float: left;
    padding-top: 0.43em;
    margin-right: 10px;

}

hr {
    position: relative;
    margin: -30px 0 57px 93px;
    width: 90%;
    color: #A3A3B9;

}

#pending-task ul li {
    display: flex;
    justify-content: space-between;
    list-style-type: disc;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 17px;
    margin-top: 10px;


}

#pending-task ul {
    border: 1px solid #A3A3B9;
    border-radius: 44px;
    padding: 19.5px 36px 19.5px 36px;
}

