﻿.modal-backdrop {
    --bs-backdrop-zindex: 1040; /* LOWER than modal */
    z-index: var(--bs-backdrop-zindex);
}

.modal {
    z-index: 1050 !important; /* Bootstrap default */
}

.pg-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
    width: calc(100% - 60px);
    position: relative;
    left: 61px;
    top: 81px;
}


.pg-content {
    background-color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    border-radius: 5px;
    position: relative;
    flex-direction: column;
    box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.1);
}

.pg-header {
    padding: 5px;
    font-weight: 500;
    width: 100%;
}

.data-container {
    font-size: 15px;
    color: var(--otod-text);
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.record-summary {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.otod-table tr:hover {
    background-color: var(--row-hover);
}

.otod-table-icon-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.otod-table-icon-group span {
    padding: 10px;
    cursor: pointer;
}