﻿
.selectedableView {
    background: white;
    position: fixed;
    /* max-height: 60vh; */
    box-shadow: 0px 0px 10px slategrey;
    outline: 1px solid slategray;
    overflow-x: hidden;
    animation: fade-in-selectable-view-anim 0.5s ease forwards;
}
@keyframes fade-in-selectable-view-anim {
    from { opacity: 0;}
    to { opacity: 1;}
}

    .selectedableView .selectedItem {
        background: lightgrey;
        z-index:99;
    }

    .selectedableView .selectable-view-controls-container {
        direction: flex;
    }

    .selectedableView .cancelButton {
        color: red;
        padding: 2px;
        font-weight: bold;
        cursor: pointer;
        float: right;
        border-radius: 3px;
        padding: 1px 5px;
        margin-left: 5px;
        margin-top: 1px;
        font-size: 1.2em;
    }

    .selectedableView .approveButton {
        color: blue;
        padding: 2px;
        font-weight: bold;
        cursor: pointer;
        float: right;
        border-radius: 3px;
        padding: 1px 5px;
        margin-left: 5px;
        margin-top: 1px;
        font-size: 1.2em;
    }
    .selectedableView .navlist {
        display:inline;
    }

        .selectedableView .navlist li {
            display: inline;
            list-style-type: none;
            border: 1px solid gray;
            background-color: white;
            text-align: center;
            padding: 0 15px;
            font-size: 1.4em;
            font-weight: bold;
        }

    .selectedableView table {
        background: white;
        border-top: 1px solid slategray;
         z-index:99;
         width:600px;
    }

        .selectedableView table td {
            padding: 10px;
            border-bottom: 1px solid slategray;
             z-index:99;
        }

        .selectedableView table tr:first-child {
            background: lightblue;
            color: black;
        }
