body {
    overflow: hidden;
}

.board-main {
    margin: 32px;
    /* width: calc(100% - 64px); */
}

.search-container-board {
    display: flex;
    flex-direction: row;
    margin-bottom: 24px;
}

.input-container-board {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(204, 207, 211);
    border-radius: 8px;
    margin-right: 32px;
    height: 32px;
    padding: 0 8px;
}

.input-container-board:hover {
    cursor: pointer;
    border-color: rgb(69, 137, 255);
}

.input-container-board img {
    height: 24px;
}

.input-container-board img:hover {
    background-color: rgb(210, 227, 255);
    border-radius: 8px;
}

.input-board {
    border: none;
}

.button-board {
    background-color: rgb(69, 137, 255);
    border: none;
    border-radius: 8px;
    color: white;
}

.button-board:hover {
    cursor: pointer;
    background-color: rgb(26, 94, 212);
    box-shadow: #b9a9a9 1px 1px;
    transition: 0.3s;
    transform: translateY(2px);
}

.tasks {
    width: 175px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    /* margin-right: 20px; */
}

.tasks img {
    height: 20px;
}

.tasks img:hover {
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(2px);
}

.task-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.task-headlines {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    width: 100%;
}

.board-content {
    background-color: lightgray;
    border-radius: 8px;
    height: 32px;
    border: 2px dotted #b9a9a9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #b9a9a9;
}

.margin-none {
    margin-right: 0 !important;
}

/* Hamburgermenu */

.hamburger-menu-add-task-close-btn {
    display: flex !important;
    position: absolute !important;
    width: 100% !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    bottom: 12px !important;
    right: 0 !important;
    flex: 1;
    padding-bottom: 0px !important;
}

.headline-add-task-sb {
    margin: 16px 0;
}

.hamburger-menu {
    display: none;
}

.add-task-sb-close-icon:hover {
    cursor: pointer;
    border-radius: 4px;
}

.overlay-add-task-board {
    z-index: 1000;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hide-scrollbar {
    overflow-y: auto !important;
}

.selected-contacts-sb {
    display: flex;
    flex-direction: row;
    margin-top: 8px;
}

.contact-initials-sb {
    height: 48px;
    width: 48px;
    background-color: #4589FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.contact-initials-sb-edit {
    height: 48px;
    width: 48px;
    background-color: #4589FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.prio1-color {
    background-color: red !important;
    color: white;
    border-bottom-color: black !important;
}

.prio2-color {
    background-color: #ffcc00 !important;
    color: white;
    border-bottom-color: black !important;
}

.prio3-color {
    background-color: green !important;
    color: white;
    border-bottom-color: black !important;
}

.to-do-content {
    width: 99%;
    border: 1px solid rgb(150, 150, 150);
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    height: 240px;
    justify-content: space-between;
    box-shadow: 2px 2px 2px #9E9E9E;
}

.to-do-content:hover {
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(2px);
    box-shadow: 1px 1px rgb(150, 150, 150);
}

.task-user-prioIcon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.category-to-do {
    height: 24px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 2px #9E9E9E;
}

.title-task {
    font-size: 16px;
    color: #4589FF;
    height: 38px;
    margin-top: 20px;
    margin-bottom: 8px;
    word-break: break-word;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.description-task {
    margin: 8px 0;
    color: lightgrey;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.task-prio-icon {
    width: 12px !important;
    height: 8px !important;
    margin: 8px;
}

.contacts-task-container {
    display: flex;
    flex-direction: row;
}

.task-initials {
    margin-right: 4px;
    border-radius: 50%;
    padding: 4px;
    font-size: 10px;
    width: 16px;
    text-align: center;
    color: white;
}

.overlay-show-task {
    z-index: 1500;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.current-task {
    background-color: white;
    border-radius: 16px;
    height: 80%;
    width: 40%;
    min-width: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.current-task-initials {
    box-sizing: content-box;
    border-radius: 50%;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: 8px 16px 4px 8px;
    color: white;
    box-shadow: grey 2px 2px 2px;
}

.edit-initials {
    margin: 8px -16px 4px 8px !important;
    box-shadow: 1px 1px 1px #6a6a6a;
    border: 1px solid #6a6a6a;
}

.full-names-overlay {
    font-size: 18px !important;
    color: rgb(94, 91, 91);
}

.current-to-do-content {
    position: relative;
    margin: 24px;
    width: 90%;
}

#current-to-do {
    display: flex;
    flex-direction: column;
    height: 94%;
}

.all-users {
    width: 100%;
    height: 32px;
    margin: 32px;
    display: flex;
    align-items: center;
}

.all-initials{
margin-right: 16px;
width: 40px !important;
height: 40px !important;
border-radius: 50%;
display:inline-block;
text-align: center;
line-height: 40px;
}

.current-category-to-do {
    width: 45%;
    background-color: #0038ff;
    text-align: center;
    color: white;
    border-radius: 4px;
    padding: 4px;
    box-shadow: grey 2px 2px 2px;
}

.current-title-task {
    font-size: 32px;
    margin: 16px 0;
}

.current-task-priority {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.current-task-close-btn {
    filter: invert(52%) sepia(47%) saturate(4550%) hue-rotate(202deg) brightness(100%) contrast(104%);
}

.current-task-close-btn:hover {
    cursor: pointer;
    transform: translateY(2px);
    transition: 0.3s;
}

.current-task-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.current-subtasks-task {
    display: flex;
    align-items: center;
    margin: 8px;
}

.current-subtasks-task input:hover {
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(2px);
}

.delete-and-edit-task {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    height: 24px;
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.flex-grow {
    width: 100%;
    /* display: flex;
    justify-content: flex-end; */
    flex-grow: 1;
    position: relative;
}

.delete-and-edit-task img {
    width: 12px;
    margin-right: 8px;
}

.delete-and-edit-task div {
    height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    padding: 0 8px;
    margin: 2px;
}

.delete-and-edit-task div:hover {
    cursor: pointer;
    border-radius: 16px;
    color: #0038ff;
    text-shadow: 1px 1px #0038ff;
    transition: 0.3s;
    transform: translateY(2px);
}

.drag-and-drop-div-height {
    height: calc(100vh - 317px);
    overflow-x: scroll;
}

.subtask-loadingbar-text {
    font-size: 10px !important;
}

.task-subtask-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.task-subtask-amount {
    display: flex;
    flex-direction: row;
}

.initials-and-fullnames-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: -16px;
}

/* loading-bar */
.subtask-progress-container {
    width: 45%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-top: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.subtask-progress-bar {
    height: 100%;
    width: 0%;
    background-color: #4589FF;
    transition: width 0.3s ease;
}

/* searchfield */
.search-container-board {
    position: relative;
    display: flex;
}

.input-container-board {
    display: flex;
    align-items: center;
}

#suggestions {
    position: absolute;
    top: 165px;
    width: 400px;
    border: 1px solid #ddd;
    background-color: #fff;
    z-index: 10000;
    max-height: 150px;
    overflow-y: auto;
    border-radius: 8px;
    display: none;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
}

.suggestion-item:hover {
    background-color: #4589FF;
    color: white;
}

.highlighted-task {
    background-color: #ffffcc;
}

.margin-8px {
    margin: 8px !important;
}

/* editTask */
.editTaskContainer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.titleEdit {
    margin-bottom: 16px;
    width: 100% !important;
}

.titleEdit input {
    cursor: pointer;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgb(0, 0, 0);
    border-top: 0;
    padding: 6px;
    width: 100%;
    border-radius: 0 0 8px 8px;
}

.titleEdit input:hover {
    border-bottom: 1px solid #4589FF !important;
}

.description-edit textarea {
    margin-bottom: 16px;
    width: 100%;
}

.description-edit textarea:hover {
    border: #4589FF solid 1px;
}

.due-date-edit {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
}

.due-date-edit input {
    cursor: pointer;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgb(0, 0, 0);
    border-top: 0;
    padding: 4px;
    padding-left: 8px;
    border-radius: 0 0 8px 8px;
}

.due-date-edit input:hover {
    border-bottom: 1px solid #4589FF;
}

.category-edit {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
}

.assigned-to-edit {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
}

.subtask-edit {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
}

.subtask-edit input {
    cursor: pointer;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #000000;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    height: 32px;
    padding-left: 8px;
}

.subtask-edit input:hover {
    border-bottom: 1px solid #4589FF;
}

.assigned-to-edit-icon {
    width: 12px;
}

.m-b-8px {
    margin-bottom: 8px;
}

.m-b-16px {
    margin-bottom: 16px;
}

.prio-buttons-edit {
    margin: 4px;
    height: 24px;
    width: 100%;
    border: 1px solid rgb(194, 194, 194) !important;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.edit-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#add-subtask-btn-sb-edit {
    position: absolute;
    bottom: 12px;
    right: 1px;
    height: 12px;
}

#subtask-edit-list {
    position: relative;
    margin-bottom: 48px;
    overflow-y: scroll;
    max-height: 150px;
}

#subtask-edit-list::-webkit-scrollbar {
    width: 5px; /* Etwas breiter für bessere Sichtbarkeit */
}

#subtask-edit-list::-webkit-scrollbar-thumb {
    background-color: #4589FF; /* Farbe der Scrollleiste */
    border-radius: 10px; /* Abgerundete Ecken */
}

#subtask-edit-list::-webkit-scrollbar-track {
    background: transparent; /* Unsichtbare Hintergrundspur */
}


.li-elements-overlayTask {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
}

.li-elements-overlayTask button {
    background-color: white !important;
    border: none;
}

.li-elements-overlayTask button:hover {
    cursor: pointer;
    transition: 0.3ms;
    transform: translateY(2px);
}

.li-elements-overlayTask img {
    width: 12px !important;
}

#subtask-edit-list li img:hover {
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(2px);
}

.saveEditBtn {
    background-color: #4589FF;
    color: white;
    border-radius: 20px;
    border: none;
    font-size: 20px;
    position: absolute;
    bottom: 8px;
    right: 0;
}

.saveEditBtn:hover {
    box-shadow: rgb(94, 91, 91) 1px 1px;
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(2px);
    background-color: #0038ff;
}

.safe-edit-btn-div {
    display: flex;
    width: 100%;
    height: 100%;
    position:relative;
    flex-grow: 1;
    justify-content: flex-end;
}

.current-to-do-content form {
    height: 100%;
}

.prio2-icon-color {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(317deg) brightness(108%) contrast(101%);
}

.add-task-sb-board {
    border-top-left-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    max-width: 400px !important;
    padding: 20px;
    height: 96% !important;
    position: relative;
    overflow-x: auto;
}

.overlay-add-task-board {
    z-index: 1000;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-end;
}

.board-create-task {
    position: absolute;
    bottom: 24px !important;
    right: 16px;
}

.subtask-container-overlay-board {
    margin-top: 28px;
    margin-bottom: 48px;
}

.width-100 {
    width: 100% !important;
}

.gap-0 {
    gap: 0 !important;
}


.li-element-subtasks {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    margin-bottom: 8px;
    margin-right: 8px;
}

.li-element-subtasks p {
    margin: 0 !important;
    width: 88%;
}

.li-elemente-subtasks button {
    border: none;
    background-color: white;
}

.li-elemente-subtasks img {
    width: 12px !important;
}

.li-elemente-subtasks img:hover {
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(2px);
}

.edit-subtasks-icons {
    display: flex !important;
    flex-direction: row !important;
    position: relative;
    width: 40px;
    justify-content: space-between;
    align-items: center;
}

.edit-subtasks-icons img {
    width: 12px !important;
}

.initials-and-fullnames-container:hover {
    cursor: pointer;
}

.filterCheckButton {
    filter: invert(52%) sepia(47%) saturate(4550%) hue-rotate(202deg) brightness(100%) contrast(104%);
}

.move-to-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.move-to-container button {
    display: none;
}

.move-to-category-buttons-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.moveToButtons {
    width: 100%;
    height: 46px;
    background-color: rgb(69, 137, 255);
    color: white;
    margin: 1px 0;
    border: none;
    border-radius: 8px;
}

.moveToButtons:hover {
    transition: 0.3s;
    transform: translateY(2px);
    cursor: pointer;
}

.responsive-btn {
    display: block;
    width: 100%;
}

.responsive-btn button {
    width: 100%;
    border: solid black 1px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: rgb(69, 137, 255);
    color: white;
}

.responsive-btn button:hover {
    cursor: pointer;
}

.subtask-error {
    border: solid black 1px;
    border-radius: 8px;
    display: none;
    justify-content: center;
}

.no-users-assigned {
    margin-left: 16px;
}

.margin-right {
    margin-right: -3px;
    border: solid rgb(69, 67, 67) 1px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.dropdown-menu {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 1000;
    width: 100%;
    border-radius: 8px;
    height: 300px;
    box-shadow: 2px 2px 2px 2px #6a6a6a;
    overflow-y: scroll;
}

.dropdown-menu::-webkit-scrollbar {
    display: none;
}

#user-select {
    width: 100%;
    border-radius: 8px;
    height: 124px;
}

#user-select option {
    cursor: pointer;
    height: 20px;
    display: flex;
    align-items: center;
}

#user-select option:hover {
    background-color: #4589FF;
    color: white;
}

#added-users-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 12px;
}

#dropdown-button {
    width: 100%;
    height: 32px;
    padding: 10px;
    background-color: white;
    border-bottom: 1px solid black;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.user-option {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 0px 8px 4px
}

.user-option:hover {
    background-color: #4589FF;
    color: white;
}

#dropdown-button:hover {
    border-bottom: solid 1px #4589FF;
}

.category-input-edit {
    width: 100%;
    height: 34px;
    padding: 6px;
    background-color: white;
    border-bottom: 1px solid black;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    border-inline: none;
}

.category-input-edit:hover {
    border-bottom: solid 1px #4589FF;
}

.dropdown-menu-add-task-on-board {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 1000;
    width: 96%;
    border-radius: 8px;
    height: 124px;
    box-shadow: 2px 2px 2px 2px #6a6a6a;
    overflow-y: scroll;
}

.dropdown-menu-add-task-on-board::-webkit-scrollbar {
    display: none;
}

#user-select-add-task-on-board {
    width: 100%;
    border-radius: 8px;
    height: 124px;
}

.checkbox-container {
    cursor: pointer;
    height: 20px;
    display: flex;
    align-items: center;
}

.checkbox-container:hover {
    background-color: #4589FF;
    color: white;
}

#added-users-container-add-task-on-board {
    display: flex;
    flex-direction: row;
    margin-bottom: 12px;
}

#dropdown-button-add-task-on-board {
    width: 100%;
    height: 32px;
    padding: 10px;
    background-color: white;
    border-bottom: 1px solid black;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

#dropdown-button-add-task-on-board:hover {
    border-bottom: solid 1px #4589FF;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content:space-between;
    margin-bottom: 8px;
    padding-left: 8px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.safe-edit-btn-innerDIV {
    position:relative;
    width: 100%;
}

.subtask-container-overlay-board ul{
    overflow-y: scroll;
    max-height: 140px;
}

.subtask-container-overlay-board ul::-webkit-scrollbar {
    width: 5px;
}

.subtask-container-overlay-board ul::-webkit-scrollbar-thumb {
    background-color: #4589FF;
    border-radius: 10px;
}

.subtask-container-overlay-board ul::-webkit-scrollbar-track {
    background: transparent;
}


@media(max-width: 800px) {
    .move-to-container button {
        margin-right: 8px;
        background-color: white;
        border: solid lightgrey 1px;
        border-radius: 4px;
        display: block;
    }

    .title-task {
        height: 30px;
    }

    .category-to-do {
        font-size: 12px;
    }

    .headlines-tasks {
        font-size: 16px !important;
    }

    .title-task {
        font-size: 12px;
    }

    .description-task {
        font-size: 10px;
    }

    .task-container {
        flex-direction: column;
        height: calc(100vh - 264px);
        overflow-y: scroll;
    }

    .drag-and-drop-div-height {
        display: flex;
        flex-direction: row;
        width: 100%;
        overflow-x: scroll !important;
        height: auto;
    }

    .to-do-content {
        min-width: 170px;
        width: 170px;
        margin-right: 8px;
    }

    .tasks {
        width: 100%;
    }

    .current-task {
        height: 90%;
        width: 90%;
        min-width: 300px;
    }

    .board-content {
        width: 100%
    }

    .task-initials {
        width: 25px !important;
        color: white;
    }

    #suggestions {
        width: 325px;
    }

    .current-task-initials {
        width: 36px !important;
        box-sizing: border-box;
    }

    .scroll-input {
        width: 275px;
        padding-bottom: 0 !important;
    }

    .add-task-sb-board {
        border-top-left-radius: 16px !important;
        width: 400px;
        margin: 32px;
        padding: 20px;
        height: 90% !important;
        position: relative !important;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
}

@media(max-width: 480px) {
    .board-main {
        margin: 16px auto;
        width: 92vw !important;
    }

    .search-container-board {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;

    }

    .button-board {
        margin-top: 8px;
        display: none;
    }

    .input-container-board {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .task-initials {
        width: 25px !important;
    }

    .current-task-initials {
        width: 36px;
    }

    #suggestions {
        width: 85%;
    }

    .task-container {
        flex-direction: column;
        height: calc(100vh - 264px);
        overflow-y: scroll;
        margin: 10px auto;
    }

    .edit-buttons button {
        font-size: 10px;
    }

    .current-task {
        display: flex;
        justify-content: center;
        position: relative;
    }

    .add-task-sb-board {
        width: 300px !important;
    }

    .gap-0 {
        width: 100% !important;
    }

    .buttons-row button {
        font-size: 12px !important;
        min-width: 30% !important;
        justify-content: space-between !important;
    }

    .board-create-task {
        position: static;
        bottom: 24px !important;
        right: 16px;
    }

    .board-create-task-btn {
        justify-content: flex-end;
    }
    
    .dropdown-menu-add-task-on-board{
        width: 87%;
    }
}

@media(max-width: 1024px) {
    .task-initials {
        width: 25px !important;
    }

    .current-task-initials {
        box-sizing: border-box;
        width: 36px;
    }

    .to-do-content {
        margin-bottom: 8px;
    }

    .container-addTask-sb-board {
        border-top-left-radius: 16px !important;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .add-task-sb-board {
        border-radius: 16px !important;
        width: 400px;
        margin: 32px;
        padding: 20px;
        height: 90% !important;
        position: relative !important;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .overlay-add-task-board {
        display: flex;
        align-items: center;
    }

    .taskcontainer {
        flex-direction: column;
        height: calc(100% - 360px);
        overflow-y: scroll;
    }
}

@media(min-width: 1440px) {
    .board-main {
        max-width: 1040px !important;
    }
}

@media(max-height: 700px) {
    .board-create-task {
        position: static !important;
    }
}

@media(min-width: 800px) {
    .responsive-btn {
        display: none;
    }

    .move-to-category-buttons-container button:hover {
        cursor: pointer;
    }
}