.select-name {
    cursor: pointer;
    padding: 12px 16px;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.edit-select-text {
    width: 100%;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border: none;
    color: black;
    cursor: pointer;
}

.edit-dropdown-arrow {
    width: 24px;
    height: 24px;
    background-image: url('../img/arrow_dropdown_down.png');
    background-size: cover;
    transition: background-image 0.1s ease-in-out;
}

.edit-dropdown-arrow:hover {
    background-image: url('../img/arrow_dropdown_down_hover.png');
}

.edit-category-dropdown.expanded .edit-dropdown-arrow {
    background-image: url('../img/arrow_dropdown_up.png');
}

.edit-category-dropdown.expanded .edit-dropdown-arrow:hover {
    background-image: url('../img/arrow_dropdown_up_hover.png');
}

.edit-contacts-container {
    display: none;
    width: 100%;
}

.edit-subtasks-container {
    display: flex;
    width: 97%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.edit-subtasks-header {
    color: #42526E;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.edit-add-subtask-input {
    display: flex;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--style, #D1D1D1);
    background: #FFF;
    cursor: pointer;
}

.edit-add-subtask-input:hover {
    border-bottom: 1px solid var(--bg-color);
}

.edit-new-subtask-textfield {
    color: black;
    font-size: 19px;
    font-family: 'Open sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border: none;
    cursor: pointer;
    width: 100%;
}

.edit-new-subtask-textfield::placeholder {
    color: var(--style, #D1D1D1);
}

.edit-new-subtask-textfield:focus {
    outline: none;
    border: none;
}

.edit-open-subtask-button {
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.edit-open-subtask-button:hover {
    content: url('../img/open_subtask_hover.png');
}

.edit-add-subtask-button {
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#edit-close-subtask:hover {
    content: url('../img/close_subtask_hover.png');
}

#edit-add-new-subtask:hover {
    content: url('../img/add_subtask_hover.png');
}

#edit-separator {
    display: none;
    opacity: 0.2;
}

.edit-hidden {
    display: none;
}

.edit-subtask-add-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.edit-subtask-container {
    display: flex;
    align-items: center;
}

.edit-subtask-container:hover {
    background: #D2E3FF;
    border-radius: 8px;
}

.edit-subtask-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 5px;
    gap: 5px;
}

.edit-subtask-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: black;
    margin-right: 5px;
}

.edit-subtask-value {
    border: none;
    outline: none;
    max-height: 1.4em;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
}

.hover-content {
    display: flex;
    align-items: center;
}

.separator2 {
    opacity: 0.2;
}

.hover-content .separator2,
.hover-content img {
    display: none;
}

.edit-subtask-container:hover .hover-content .separator2,
.edit-subtask-container:hover .hover-content img {
    display: inline-block;
}

.editing-mode:hover .hover-content .separator2,
.editing-mode:hover .hover-content img {
    display: none;
}

.edit-edit-subtask-button,
.edit-delete-subtask-button {
    cursor: pointer;
}

.edit-edit-delete-subtask-button,
.edit-save-subtask-button {
    display: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.edit-edit-delete-subtask-button:hover {
    content: url('../img/delete_subtask_hover.png');
}

.edit-save-subtask-button:hover {
    content: url('../img/add_subtask_hover.png');
}

.separator3 {
    display: none;
    opacity: 0.2;
}

.no-hover:hover {
    background: none;
}

.edit-add-task-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 4px;
}

.edit-add-task-buttons-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.edit-button-create-task {
    display: flex;
    padding: 16px 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    background: #4589FF;
    cursor: pointer;
    border: none;
    color: #FFF;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.edit-button-create-task:hover {
    background: #005DFF;
}

.edit-button-create-task:active {
    background-color: #FFFFFF;
    color: var(--bg-color, #4589FF);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.edit-button-create-task:active .button-create-task-pic {
    content: url('../img/check_active.png');
}

.border-bottom {
    border-bottom: 1px solid #D1D1D1;
}

.d-none {
    display: none;
}

.inline-flex {
    display: inline-flex;
}


/* Media Query für Bildschirmbreite von maximal 768px */
@media(max-width: 768px) {
    .edit-slide-container {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .edit-task-slide-container {
        padding: 30px 30px;
    }

    .edit-add-task-titel-textfield {
        font-size: 28px;
    }

    .edit-add-task-description-header,
    .edit-due-date-header,
    .edit-due-date-textfield,
    .edit-assigned-to-header,
    .edit-assigned-select-text,
    .edit-select-text,
    .edit-category-header,
    .edit-subtasks-header,
    .edit-new-subtask-textfield,
    .edit-select-name,
    .edit-category {
        font-size: 16px;
    }

    .edit-add-task-priority-header {
        display: none;
    }

    .edit-add-task-description-textfield {
        height: 40px !important;
        font-size: 16px;
    }

    .edit-priority-choice-inner {
        font-size: 14px;
        width: 102px;
        padding: 14px 8px;
    }

    .edit-priority-choice-inner-pic img {
        width: 16px;
        height: 10.51px;
    }

    .edit-button-create-task {
        font-size: 18px;
        padding: 8px 6px;
    }
}

@media(max-width: 425px) {
    .edit-task-slide-container {
        padding: 20px 10px;
    }

    .edit-priority-choice-inner {
        font-size: 12px;
        padding: 12px 6px;
    }

    .edit-priority-choice-inner-pic img {
        width: 10px;
        height: 8.51px;
    }
}