﻿.bootbox-body dd {
    margin-left: 50px;
}

.visual-container {
    border: 2px solid #ccc;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.visual-container2 {
    border: 5px solid #167ab1;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.readOnlyVisually {
    background-color: #f0f0f0;
    cursor: not-allowed;
    color: #555;
}

.loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998; /*Because it must be below the loading spinner*/
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.loadingSpinner {
    display: none;
    font-size: 200px;
    color: navy;
    position: fixed;
    top: 35%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.selectedMenuItem {
    background-color: #a6171a;
    font-weight: bolder;
    border: 1px solid #a6171a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.selectedPrimaryButton {
    background-color: #113963; 
    font-weight: bolder;
    border: 1px solid #113963;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}



.displayNone {
    display: none;
}

.clickable {
    cursor: pointer;   
}

.readonly-appearance {
    background-color: #eee;
    color: #555;
    cursor: not-allowed;
    pointer-events: none; /* Prevents user interaction */
}
