.sliding-editor-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    background-color: gray;
    opacity: 0.6;
    z-index: 40;
}

.sliding-editor-div {
    position: fixed;    
    top: 100px;
    right: 0;
    /* width: 600px; */
    /* height: calc(100vh - 105px); */
    height: calc(100vh - 105px);
    background-color: #303030;
    color: white;
    transform: translateX(100%);
    transition: 0.4s ease-out;
    padding: 0px 20px;
    z-index: 41;

    overflow-y:scroll;

    /* box-shadow: -3px -3px lightyellow; */
    border: 1px solid whitesmoke;
    border-radius: 6px;
}

.sliding-editor-div-show {
    transform: translateX(0%);
}

.sliding-editor-title {
    color: white;
    font-size: 0.8rem;
    margin: 15px 0 16px 6px;
    text-transform: uppercase;
    user-select: none;
}

.sliding-editor-grid-1 {
    display: grid;
    /* width:100%; */
    margin-top: 4px;
    /* grid-template-columns: 100px auto; */
    grid-template-columns: auto 1fr;
    grid-gap: 0px;
}

.sliding-editor-grid-wide {
    display: grid;
    /* width:100%; */
    margin-top: 4px;
    grid-template-columns: 210px auto;
    grid-gap: 0px;
}


.sliding-editor-grid-item {
    color: white;
    border: 1px solid dimgray;
    padding: 4px 15px 4px 5px;
    font-size: 0.9rem;
}

.sliding-editor-grid-item select:disabled {
    color: DarkSlateBlue;
    background-color: white;
}

.sliding-editor-grid-item div {
    color: white;
    font-size: 0.8rem;
}


.sliding-editor-warning {
    color: pink;
    margin: 10px 0 0 10px;
    font-weight: 600;
    user-select: none;
}

.sliding-editor-div label {
    color: white;
}


.sliding-editor-div button {
    padding: 10px 14px;
    margin-top: 26px;
    font-weight: 400;
    border-radius: 4px;
    color: white;
    user-select: none;
    cursor: pointer;
}


.sliding-editor-button-ok {
    background-color: mediumseagreen;
    border: 1px solid lightgreen;
    margin-left: 56px;
}

.sliding-editor-button-ok:disabled {
    background-color: gray;
    color: silver;
    border: none;
}

.sliding-editor-button-cancel {
    background-color: salmon;
    border: 1px solid orange;
    margin-left: 16px;
    /* need the bottom margin to make sure it is visible with the vertical scrollbar when the screen is too short */
    margin-bottom: 25px;
}

.sliding-editor-button-advanced {
    color: #555!important;
    background-color: silver;
    font-size: 0.8rem;
    border: 1px solid white;
    margin-left: 16px;
    /* need the bottom margin to make sure it is visible with the vertical scrollbar when the screen is too short */
    margin-bottom: 25px;
}

.sliding-editor-button-advanced-2 {
    color: black !important;
    background-color: honeydew;
    font-size: 0.8rem;
    border: 1px solid black;
    margin-left: 16px;
    /* need the bottom margin to make sure it is visible with the vertical scrollbar when the screen is too short */
    margin-bottom: 25px;
}

.sliding-editor-div input::file-selector-button {
    background-color: azure;
    padding: 5px 7px;
    border: 1px solid silver;
    border-radius: 6px;
    color: black;
}

/* .sliding-editor-div input::file-selector-text {
   color:red;
} */

.sliding-editor-label {
    color: white;
}

.sliding-editor-div>table tr td{
    color: white;
    background-color: #303030;
}

.sliding-editor-div>table tr:hover td:hover{
    color: lightgray;
}