.boardBody {
    background-color: rgb(246, 247, 248);
    margin: 0;
    height: 100%;
    padding: 0px 26px 0px 26px;
}

.design-bg {
    background-color: #FF7A00 !important;
}

.sales-bg {
    background-color: #FC71FF !important;
}

.backoffice-bg {
    background-color: #1fd7c1 !important;
}

.media-bg {
    background-color: #ffc701 !important;
}

.marketing-bg {
    background-color: #0038ff !important;
}

.red {
    background-color: red !important;
}

.green {
    background-color: green !important;
}

.blue {
    background-color: blue !important;
}

.mt {
    margin-top: 16px;
}

.v-hide {
    visibility: hidden;
}

.showScrollBarY {
    overflow-y: scroll;
}

.boardHeadlineContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    padding-top: 36px;
}

.boardManagementText {
    display: none;
}

.board {
    width: 176px;
    height: 73px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
}

.boardHeadlineRightContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    gap: 35px;
}

.searchContainer {
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 13px 21px;
    gap: 10px;

    background: #FFFFFF;
    border: 1px solid #A8A8A8;
    border-radius: 10px;
}

.searchInput {
    width: 226px;
    height: 31px;
    border: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    cursor: pointer;
}

.searchInput:focus {
    outline: none;
}

.searchBtn,
.addTaskBtn {
    height: 31px;
}

.searchBtn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-left: 1px solid #D1D1D1;
    width: 43px;
    cursor: pointer;
}

.addTaskBtn {
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 10px;
    gap: 10px;

    width: 137px;
    height: 55px;
    color: white;
    background: #2A3647;
    border: 1px solid #2A3647;
    border-radius: 10px;
    font-size: 21px;

}

.addTaskBtnText {
    width: 92px;
}

.btn-border:hover {
    border: 2px solid rgb(41, 171, 226);
}

.btn-bg:hover {
    background-color: rgb(41, 171, 226);
    border: 2px solid rgb(41, 171, 226);
    cursor: pointer;
}

.btn-border-color:hover {
    border: 2px solid rgb(41, 171, 226);
    color: rgb(41, 171, 226);
    cursor: pointer;
}

.btn-border-color:hover .plusLine1 {
    background-color: rgb(41, 171, 226);
}

.btn-border-color:hover .plusLine2 {
    background-color: rgb(41, 171, 226);
}

.addTaskBtnText {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
}

.bg-white {
    background-color: white !important;
}

.mobileAddTask {
    width: 40px;
    height: 40px;
}

.boardContentContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px;
    margin-top: 80px;
    gap: 10px;
}

.statContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    width: calc(25% - 26px);
    height: 700px;
    overflow-y: auto;
}

.boardStatusHeadContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.boardStatus {
    width: fit-content;
    height: 25px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
}

.plusBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;

    border: 2px solid #2A3647;
    border-radius: 10px;
    position: relative;
}

.plusLine1 {
    position: absolute;
    left: 7.5;
    top: 7.5px;
    height: 15px;
    width: 2px;
    background-color: black;
}

.plusLine2 {
    position: absolute;
    left: 7.5;
    top: 7.5px;
    height: 15px;
    width: 2px;
    background-color: black;
    transform: rotate(90deg);
}

.statusContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    min-height: 300px;
    height: 700%;
    width: 100%;
    margin-top: 16px;
    overflow-x: hidden;
}

.pinnedTaskContainer {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 19px;
    gap: 10px;
    width: 250px;
    height: 239px;
    background: #FFFFFF;
    box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    cursor: pointer;
    z-index: 99;
}

.placeholder-container {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 19px;
    gap: 10px;
    width: 250px;
    min-height: 239px ;
    background: lightgray;
    border-radius: 30px;
    border: dotted lightgray;
    cursor: pointer;
    z-index: 99;
}

.taskCategory {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 25px;
    color: white;
    background: #FF7A00;
    border-radius: 8px;
    width: 53px;
    height: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.pinnedTaskHeadline {
    margin-block-start: 16px;
    margin-block-end: 10px;
}

.pinnedTaskDiscription {
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.progressContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
}

.progressBar {
    width: 138px;
    height: 8px;

    background: #F4F4F4;
    border-radius: 4px;
}

.blueProgress {
    background-color: blue;
    height: 8px;
    border-radius: 4px;
}

.progressText {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
}

.pinnedTaskContactsArrowContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    width: 100%;
}

.pinnedTaskContactsContainer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.contactContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border-radius: 1px solid #FFFFFF;
    color: white;
}

.dragAreaHighlight {
    border-radius: 28px;
    border: 5px solid grey;
    padding: 8px;
}

.taskOverviewPopUpContainer {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.taskOverviewPopUp,
.taskModifyPopUp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 25px;
    isolation: isolate;
    width: 500px;
    height: 80vh;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    overflow-y: auto;
    max-height: 90vh; 
}

.modifySubtaskList {
    margin-top: 8px !important;
    gap: 4px;
}

.modifySubtask {
    gap: 8px;
}

.modifySubtask input {
    width: 15px !important;
}

.modifySubtask p {
    display: flex !important;
    margin-block-start: 0;
    margin-block-end: 0;
    width: 200px;
}

.taskModifyPopUp {
    gap: 0;
    height: fit-content;
}

.m-0 {
    margin: 0 !important;
}

.prioContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 18px;
    gap: 10px;
    border-radius: 10px;
    width: 131px;
    height: 33px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}

.taskPopUpHeadline {
    margin-bottom: 25px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;

    color: #2A3647;
}

.taskPopUpTable {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.taskPopUpRow {
    display: flex;
    align-items: center;
    gap: 25px;
}

.taskPopUpLeftTd {
    gap: 1px
}

.taskPopUpRightTd {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4px 18px;
}

.taskPopUpPrio {
    gap: 10px;
    border-radius: 10px;
    background-color: #FF7A00;
}

.assignedToHeadline {
    margin-bottom: 25px;
    font-size: 21px;
}

.taskPopUpDiscription {
    height: 50px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 120%;
}

.taskPopUpAssignmentsList {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 25px;
    overflow-y: auto;
}

.taskPopUpSingleAssignmentContainer {
    display: flex;
    align-items: center;
    gap: 25px;
}

.popUpButtonsContainer {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 60px;
    right: 47px;
    border-collapse: collapse;
}

.closeBtnCross:hover{
    transform: scale(1.4);
}

.taskPopUpButton {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border: 2px solid #2A3647;
}

.deleteButton {
    background-color: #2A3647;
}

.closeTaskPopUpButton {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.leftBtn {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

.leftBtnImg {
    width: 21.333335876464844px;
    height: 24px;
}

.rightBtn {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #2A3647;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

.rightBtnImg {
    width: 30px;
    height: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.rotateDeg {
    transform: rotate(10deg);
}

.modifyTaskInputContainer {
    background-color: #FF7A00;
    width: 100%;
}

#modifyDescription {
    resize: none;
    height: 80px;
}

.modifyInput {
    width: 400px !important;
}

.confirmBtn {
    height: fit-content;
    width: fit-content;
    padding: 12px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}

.move-task-btns {
    position: absolute;
    display: none;
    flex-direction: column;
    gap: 10px;
    top: 10px;
    right: 10px;
}

.direction-btn {
    background-color: #2A3647;
    border-radius: 30%;
    padding: 5px;
}

.direction-btn:hover {
    background-color: rgb(41, 171, 226);
}

.no-task {
    font-size: 16px;
    background-color: #2A3647;
    border-radius: 8px;
    color: white;
    padding: 8px;
}

.special-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.actual-subtasks {
    display: flex;
    flex-direction: column;
}

@media(max-width: 1550px) {
    .boardStatusHeadContainer {
        width: 250px;
        padding: 19px;
    }

    .statContainer {
        width: calc(50% - 26px);
    }

    .boardContentContainer {
        justify-content: center;
    }
}

@media (max-width : 1000px){
    .statContainer{
        height: auto;
    }
}

@media(min-width: 571px) {
    .closeBtnArrow {
        display: none;
    }

}

@media(max-width: 570px) {

    .taskOverviewPopUp,
    .taskModifyPopUp {
        height: 90vh;
        width: 90vw;
        gap: 28px;
        border-radius: 0;
    }

    .closeBtnCross {
        display: none;
    }

    .assignedFrame {
        width: 300px !important;
    }

}

@media(max-width: 830px) {
    .boardHeadlineContainer {
        flex-direction: column;
        gap: 30px;
    }

    .addTaskBtn {
        position: unset;
    }

    .mobileAddTask {
        display: flex !important;
        background-color: #2A3647;
    }

    .boardHeadlineLeftContainer {
        display: flex;
        align-items: center;
        width: 100% !important;
        justify-content: space-between;
    }

}

@media(max-width: 730px) {
    .popUpButtonsContainer {
        display: flex;
        flex-direction: column;
        gap: 25px;
        bottom: 25px;
        right: 30px;
    }

    .taskPopUpAssignmentsList {
        height: 100px;
        width: 220px;
    }

    .taskPopUpHeadline {
        max-width: 350px;
        font-size: 39px;
    }

    .taskModifyPopUp {
        width: 100vw;
        height: 100vh;
        overflow-x: hidden;
    }

    .taskPopUpDiscription {
        max-width: 340px;
        font-size: 16px;
    }

    .pinnedTaskContainer {
        width: 312px;
    }

    .statContainer {
        width: 350px;
    }

    .boardStatusHeadContainer {
        width: 330px;
        padding: 0px;
    }

    .boardHeadlineLeftContainer {

        max-width: 350px !important;

    }

    .boardHeadlineRightContainer {
        max-width: 350px;
    }

    .boardManagementText {
        width: 350px;
        text-align: left;
        display: block;
        font-size: 20px;
    }

    .rightBtn{
        border-radius: 10px;
       
    }
    
    .rightBtnImg{
        height: 30px;
        width: 30px;
    }
    .leftBtn{
        border-radius: 10px;
        height: 40px;
        width: 40px;
    }

    .modifyInput {
        width: 300px !important;
    }

    .move-task-btns {
        display: flex;
    }

}

@media(max-width: 400px) {
    .boardBody {
        padding: 0px 8px;
    }

    .pinnedTaskContainer {

        height: auto;
    }

    .modifyInput {
        width: 280px !important;
    }

    .board {
        font-size: 48px;
        display: flex;
        align-items: center;
    }
}

@media(max-width: 350px) {

    .taskOverviewPopUp, .taskModifyPopUp{
        padding: 20px;
    }
}
