.modal360 {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    align-items: center;
}

.modal360.open {
    opacity: 1;
    z-index: 9999;
}

.modal360-content {
    position: absolute;
    left: 50%;
    top: 50%;
    Transform: translate(-50%, -50%);
    padding: 10px;
    max-width: 85%;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid #beb5b5;
    font-family: 'Cabin Condensed', sans-serif;
    font-size: 18px;
    overflow: auto;
    background: url(/siteimages/p6.webp);
    max-height: calc(90vh - 75px);
}

.modal360-content input,
.modal360-content textarea,
.modal360-content select,
.modal360-content button {
    padding: 3px;
    font-family: 'Cabin Condensed', sans-serif;
    font-size: 16px;
}

.modal360-content input[type="checkbox"] {
    float: inherit;
}

.modal360-content input:focus,
.modal360-content textarea:focus,
.modal360-content select:focus {
    border-color: rgb(68, 86, 121);
    outline: none;
}

.modal360-content .field {
    float: left;
}

.modal360-content p,
.modal360-content h1,
.modal360-content h2,
.modal360-content h3,
.modal360-content h4 {
    width: 100%;
    margin: 5px 0px;
}

.dialogueBoxTitle {
    font-size: 24px;
    padding: 0px 0px 5px 0px;
    margin: 0px 0px 5px 0px !important;
    border-bottom: 2px solid rgb(177, 116, 3);
    float: left;
    width: 100%;
}

.dialogBoxContents {
    width: 100%;
    padding: 5px;
    font-size: 17px;
    font-family: 'Cabin Condensed', sans-serif;
    float: left;
}

.closeBtn {
    position: absolute;
    top: 8px;
    right: 13px;
    font-size: 24px;
    color: grey;
}

.optionLabel {
    width: 100px;
    margin-right: 3px;
    float: left;
    margin-top: 5px;
}

.optionCheckboxLabel {
    margin-left: 6px;
}

.optionMenu {
    min-width: 60px;
    padding: 3px;
    font-family: inherit;
}

.optionText {
    padding: 4px;
    font-family: inherit;
}

.popupTable {
    width: 100%;
    border-collapse: collapse;
    height: fit-content;
    background: var(--cream);
}

.popupTable tbody {
    display: block;
    max-height: 176px;
    overflow-y: auto;
}

.popupTable thead tr,
.popupTable tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.popupTable .numAdditions,
.popupTable .numDeletions {
    text-align: center;
}

.popupTable td.activeColumn,
.popupTable th.activeColumn {
    width: 60px;
}

.popupTable thead tr {
    background: #e3edee;
}

.popupTable td,
.popupTable th {
    padding: 3px 8px;
    margin: 0px;
}


.popupTable tbody tr:hover {
    background: #aec3ca;
}

.popupTable tbody tr.nohover:hover {
    background: inherit;
}

.popupTable td {
    cursor: pointer;
}

.popupTable tr.active {
    background: lightblue;
}

#smartTypeTabs {
    padding: 5px;
    font-family: 'Cabin Condensed', sans-serif;
    margin-left: 5px;
}

#smarttypetabs .smartTypeText {
    width: 100%;
    padding: 2px;
    font-size: 16px;
}

#smartTypeTabs.ui-tabs .ui-tabs-nav li a {
    font-size: 18px;
    padding: .2em .3em;
}

.smartTypeList {
    font-size: 16px;
    padding: 8px;
    height: 222px;
    overflow: auto;
    border: 1px solid grey;
    margin: 5px 0px;
    list-style-type: none;
}

.elementList {
    font-size: 16px;
    width: 170px;
    margin: 0px;
    padding: 5px;
    list-style-type: none;
    background: white;
    height: 362px;
    overflow: auto;
    border: 1px solid grey;
}

.elementList li {
    cursor: pointer;
    padding: 0px 4px;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
    font-size: 18px;
}

.elementList li.active {
    background: lightblue;
}

.styleCheckBox {
    margin-top: 4px;
}

#collaborationTable td.activeColumn,
#collaborationTable th.activeColumn {
    width: 120px;
}

#collaborationTable td {
    height: 35px;
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.unselectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.smartTypeText {
    width: 100%;
    padding: 2px;
    font-size: 16px !important;
    text-transform: uppercase;
}

.smartTypeList li {
    cursor: pointer;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
    padding: 1px 3px;
}

.smartTypeList li.active {
    background: lightblue;
}

.collabInvite {
    color: var(--text-dark);
    display: block;
}

.collabPending {
    color: orange;
    display: block;
}

.collabDeclined {
    color: red;
    display: block;
}

.collabAccepted {
    color: green;
    display: block;
}