body {
    display: flex;
    margin: 0;
    font-family: 'inter';
    background-color: #f6f7f8;
    overflow-x: hidden;
}

.d-none {
    display: none !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.close-btn {
    position: absolute;
    right: 40px;
    top: 30px;
    padding: 10px;
    cursor: pointer;
    z-index: 9;
}

.headline {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.add-task-wrapper {
    /*position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    height: 90vh;
    width: 80%;
    z-index: 9;
    background: white;
    border-radius: 20px;
    */
    position: fixed;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 50%;
    top: 50%;
    height: 90%;
    width: 80%;
    z-index: 21;
    background: white;
    border-radius: 20px;
}

.alert {
    color: red;
    font-size: 12px !important;
    position: absolute !important;
    left: 0;
    top: 40px;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

@media (max-width:1300px) {

    .hide-if-not-mobile {
        display: unset !important;
    }



    h1 {
        margin-top: 0px;
    }

    .add-task-wrapper {
        border-radius: 0;
        margin-top: 60px;
        height: calc(100vh - 150px);
        width: 100vw;
        padding: 50px;
        box-sizing: border-box;
        z-index: 1;
        bottom: 0;
        top: 0;
        overflow-y: scroll;
    }
}

@media (max-width:600px) {
    p {
        margin: 5px;
    }

    .headline {
        flex-direction: column;
        align-items: flex-start !important;
        max-width: 500px;
        position: relative;
        width: 100%;
        gap: 0;
    }
}