.searchPart{
    width: 1440px;
    height: 150px;
    position: fixed;
    top: 97px;
    left: 232px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.searchBox{
    height: 53px;
    width: 251px;
    border-radius: 10px;
    border: 1px solid lightgray;
    margin-left: 50px;
}
.dragCollumn{
    width: 25%;
    min-height: 100%;
    position: relative;
}
.BSHL{
    min-height: 30px;
    width: 19%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: fixed;
    background-color: white;
}
.BSHL img{
height: 30px;
} 

.BSHL h5{
    font-size: 20px;
    color: #42526E;
    margin: 0;
}
.dragArea{
    width: calc(95% - 232px);
    position: fixed;
    top: 237px;
    left: 232px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 10px 10px 10px 50px;
    padding-right: 5px;
    overflow: auto;
}
.dragBox{
    margin-top: 50px;
    width: 100%;
    min-height: 90%;
}
.dragOver{
    background-color: rgb(243, 243, 243);
    outline: dotted lightblue;
    border-radius: 30px;
}
.boardCard{
    width: 100%;
    border-radius: 30px;
    box-shadow: 1px 1px 5px 0px rgb(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    cursor: pointer;
    background-color: white;
}
.boardCardPrio{
    padding: 20px 0;
}
.boardCardCategory{
    padding: 2px 15px;
    margin-top: 15px;
    margin-left: 15px;
    border-radius: 10px;
    color: white;
}
.boardCardTitle{
    margin-left: 15px;
    color: #4589ff;
}
.boardCardTitle h5{
    margin: 20px 0px 10px 0px;
}
.boardCardDiscription{
    margin: 0 15px;
    margin-bottom: 20px;
    color: rgb(179, 178, 178);
    word-break: break-all;
}
.boardCardInitialArea{
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.boardCardInitials{
    display: flex;
    padding-left: -15px;
}
.boardCardAvatar{
    color: white;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    margin-left: -12px;
    margin-bottom: 15px;
    border: 2px solid white;
}
.progress{
    width: 100%;
    height: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.progressText{
   font-weight: 600; 
}
#subtaskProgress {
    margin-left: 15px;
    min-width: 50%;
    border-radius: 4px;
    background-color: rgb(233, 233, 233);
}
#subtaskBar {
    width: 50%;
    height: 8px;
    border-radius: 4px;
    background-color: #4589ff;
}
.overlay{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    backdrop-filter: blur(10px);
    z-index: 99;
    cursor: pointer;
}
.overlayCard{
    height: 800px;
    width: 600px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.innerContentBoxOverlay{
    width: 90%;
    height: 90%;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-weight: 400;
    font-size: 18px;
    cursor: default;
    overflow: auto;
}
.overlayCardCategory{
    padding: 5px 15px;
    color: white;
    display: flex;
    justify-content: center ;
    align-items: center;
    font-size: 15px;
    border-radius: 10px;
}
.overlayCardTitle{
    font-weight: 700;
    font-size: 50px;
    
}
.overlayCardTitle h5{
    margin: 0;
}
.overlayCardDiscription{
    font-weight: 400;
    font-size: 21px;
}
.overlayCardDueDate{
    display: flex;
    gap: 25px;
}
.high{
    background-color: #e2a2a2;
}
.mid{
    background-color: #eecc99; 
}
.low{
    background-color: #a2e2bd;
}
.overlayPrio{
    display: flex;
    align-items: center;
    gap: 25px;
}
.overlayCardPrio{
    display: flex;
    align-items: center;
    padding: 5px 15px;
    border-radius: 10px;
    gap: 10px;
}
.overlayCardInitialArea{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}
.overlayCardInitials{
    display: flex;
    align-items: center;
    gap: 25px;
}
.overlaySubtasks{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.overlaySubtasks h5{
    margin: 0;
}
.singleSubTask{
    display: flex;
    align-items: center;
    gap: 10px;
}
.overlayCardAvatar{
    height: 42px;
    width: 42px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.overlayCardClose{
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.overlayCardEdit{
    position: absolute;
    z-index: 100;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
}
.overlayEnterTitleInput{
    min-height: 50px ;
    font-size: 25px;
    border-bottom: 1px solid rgb(214, 214, 214);
    width: 90%;
}
.overlayassignTo{
    border-bottom: 1px solid rgb(214, 214, 214);
    width: 90%;
    position: relative;
}
.overlayAssignToContent{
    width: 92%;
}
.overlayAddCategoryContent{
    width: 92%;
}
.overlayCard h4{
    margin: 0;
}
.overlayDueDateInput{
    min-height: 50px ;
    border-bottom: 1px solid rgb(214, 214, 214);
    width: 90%;
}
.overlayAddCategory{
    border-bottom: 1px solid rgb(214, 214, 214);
    width: 90%;
    position: relative;
}
.overlayTextArea{
    width: 90% !important;
}
.overlaySubtaskField{
    width: 90%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(214, 214, 214);
}
#overlaySubtask{
    display: flex;
    flex-direction: column;
}
.width80{
    width: 85%;
}
.width90{
    width: 90%;
}
.addTaskPopup{
    backdrop-filter: blur(10px);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
}
.windowPopup{
    height: 100%;
    width: 500px;
    background-color: white;
    border-radius: 30px 0 0 30px;
    box-shadow: 1px 1px 5px 0px rgb(0, 0, 0, 0.2);
    position: relative;
}
.addTaskMainPopup{
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 40px;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    padding-right: 20px;
    gap: 10px;
    overflow-y: scroll;
    margin-bottom: 50px;
}
.popuphead{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.popuphead h2{
    font-size: 40px;
    margin: 0;
}