

.overlay-background {
    background-color: rgba(0,0,0,0.75);
    position: fixed; /* stays in place */
    top: 0;
    left: 0;
    width: 100vw; /* full viewport width */
    height: 100vh; /* full viewport height */
    justify-content: center;
}

.overlay-window-host {
    display: flex;
    width: 100vw; /* full viewport width */
    height: 100vh; /* full viewport height */
    justify-content: center;
    align-items: center;
}

.overlay-window {
    width: 600px;
    background-color: white;
    border-width: 1px;
    border-radius: 15px;
    border-color: gainsboro;
    border-style: solid;
    padding: 20px 15px 10px 20px;
}

.overlay-grid {
    display: grid;
    grid-template-rows: 60px auto 60px
}

.left-aligned-container {
    display: flex;  
    justify-content: start;
    align-items: center;
}

.lower-command-bar {
    display: flex;
    justify-content: end;
    align-items: center;
}

    .lower-command-bar button:not([data-rightmost]) {
        margin-right: 10px;
    }

input::placeholder{
    color:ghostwhite;
}

.sidebar-item-link {
    font-weight: bold;
    font-size: 11pt;
    color: #3b4590;
}


/* Alternate rows */
/*.my-grid tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.my-grid tbody tr:nth-child(odd) {
    background-color: #ffffff;
}*/

/* Hover highlight */
.my-grid tbody tr:hover {
    background-color: #dbeafe; /* soft blue */
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}

.my-grid tbody tr:not(:has(td)) {
    display: none;
}


