body {
    margin: 0 !important;
    background-color: #F6F7F8;
    font-family: 'Inter', sans-serif !important;
    overflow: hidden;
    scroll-behavior: smooth;
}

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

.overflow-none {
    overflow: hidden !important;
}

.body {
    margin: 90px 0 0 272px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
}

#fullscreenBackground {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.formValidate {
    display: block;
    min-height: 20px;
    margin-top: 5px;
    color: red;
    cursor: default;
}

.globalInput {
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.globalInput input {
    border: none;
    outline: none;
    width: 100%;
}

/* global buttons */
.buttonGlobal1 {
    color: white;
    font-weight: 700 !important;
    border: 1px solid #2A3647;
    font-size: 21px;
    height: 51px;
    background: #2A3647;
    border-radius: 10px;
    cursor: pointer;
    transition: 125ms;
    padding: 15px;
    display: flex;
    align-items: center;
}

.buttonGlobal2 {
    color: #2A3647;
    font-weight: normal;
    border: 1px solid #2A3647;
    font-size: 21px;
    height: 51px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 125ms;
    padding: 15px;
    display: flex;
    align-items: center;
}

.buttonGlobal1:hover {
    background-color: #29ABE2 !important;
    border-color: #29ABE2;
    transition: 125ms;
}

.buttonGlobal2:hover {
    border-color: #29ABE2;
    color: #29ABE2;
    transition: 125ms;
}

/* delete popup */
#deleteBackground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 500ms ease-in-out;
}

.deletePopup {
    background-color: white;
    max-width: 400px;
    min-width: 270px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(300%, -50%);
    z-index: 999;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    transition: transform 750ms ease-in-out;
    /* hinzugefügt */
}

.show {
    transform: translate(-50%, -50%) !important;
    transition: transform 750ms ease-in-out;
    /* hinzugefügt */
}

.deletePopup div {
    display: flex;
    gap: 30px;
}

.deletePopup p {
    margin: 0 0 10px 0;
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 16px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #b4b4b4;
    border-radius: 16px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #8f8f8f;
}

@media(max-width: 1000px) {
    .body {
        width: 100vw;
        /* max-width: none; */
        height: calc(100vh - 200px);
        margin: 100px 0;
        overflow: hidden;
    }
}