
#nmtdc-save-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    box-sizing: border-box;
    width: 100%;

    margin: 10px 0 5px;
    padding: 9px 10px;

    background: rgba(0,0,0,.68);

    border:
        1px solid
        rgba(255,185,20,.75);

    border-radius: 9px;

    backdrop-filter: none;

    position: relative;
    z-index: 1000;
}

.nmtdc-save-title {
    color: #ffd45b;
    margin-right: 5px;
}

.nmtdc-save-button {
    border:
        1px solid
        #ffb000;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #df7900,
            #ffb000
        );

    color: #111;

    padding:
        8px 13px;

    font-weight: 800;

    cursor: pointer;
}

.nmtdc-save-button:hover {
    filter: brightness(1.12);
}

@media(max-width:800px) {

    .nmtdc-save-title {
        width: 100%;
    }

    .nmtdc-save-button {
        flex: 1 1 45%;
    }
}
