@media (max-width: 1300px) {
    .button-name {
        display: none;
    }

    .content-grid {
        display: flex;
        flex-direction: column;
    }

    .content-right {
        display: none;
    }

    #addContactButton {
        position: absolute;
        bottom: 10px;
        right: 10px;
    }

    .button-wrapper {
        padding: 0;
        border-radius: 100px;
    }

    .contacts {
        overflow: scroll;
        height: 100px;
        height: calc(100vh - 92px);
        padding: 0 24px;
        background-color: white;
    }

    .add-new-contact {
        display: flex;
        width: 56px !important;
        height: 56px;
        padding: 12px 0px;
        justify-content: center;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
        border-radius: 100px;
        border: 1px solid #2a3647;
        background: #2a3647;
        color: white;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
    }

    .button-text {
        display: none;
    }

    .content-right-overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        top: 0;
        right: 0;
        left: 0;
        background-color: white;
        z-index: 100;
    }

    .arrow-back {
        position: absolute;
        height: 20px;
        width: 20px;
        background-color: black;
        right: 10px;
        top: 10px;
        cursor: pointer;
    }
}

@media (max-width: 1000px) {
    form {
        overflow-y: scroll;
    }
    form::-webkit-scrollbar {
        width: 12px;
    }

    form::-webkit-scrollbar-thumb {
        background-color: darkgray;
        border-radius: 10px;
    }

    form::-webkit-scrollbar-track {
        background-color: white;
        border-radius: 12px;
    }
}

@media (max-width: 770px) {
    .drag-drop-global-wrapper {
        padding-bottom: 100px;
    }
}

@media (max-width: 550px) {


    .searchbar-board {
        width: 100%;
    }

    button {
        width: 100%;
    }

    .content-right-wrapper {
        padding-bottom: 100px;
    }
}

@media (max-width: 380px) {
    .content-container {
        width: auto;
    }
}