/*
Version:0.0.18
*/
.modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50vw;
}

.modal-content {
    margin: auto;
}

.table-container {
    /* height: 70vh; */
}

.td-100 {
    width: 100vw
}

.td-90 {
    width: 90vw
}

.td-80 {
    width: 80vw
}

.td-70 {
    width: 70vw
}

.td-60 {
    width: 60vw
}

.td-50 {
    width: 50vw
}

.td-40 {
    width: 40vw
}

.td-35 {
    width: 35vw
}

.td-30 {
    width: 30vw
}

.td-25 {
    width: 25vw
}

.td-20 {
    width: 20vw
}

.td-10 {
    width: 10vw
}

.td-5 {
    width: 5vw
}

.truncate-text {
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

/* Data list*/
.locked-data {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.locked-data .locked-value {
    margin-right: 10px;
}

.locked-data .fa-lock {
    color: #666;
    margin-right: 20px;
}

/* /data-list  */
/* panel data head selectors*/
.navbar-brand {
    font-size: 1.5rem;
}

.uni-selection-container {
    height: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5px;
}

.data-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin-left: 5px;
    margin-right: 10px;

    white-space: nowrap;
}

.uni-dropdown {
    flex: 2;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 30px;
}

.uni-action-btn {
    padding: 4px 12px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.uni-action-btn:hover {
    background-color: #0056b3;
}

/* /panel data head selectors*/


/* modal selector*/
.uni-list-selection-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 5px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
}

/* /modal selector */


/* wcag */
.nav-link {
    color: black;
}

.big-icon {
    color: black
}

.dark-shadow {
    background-color: rgba(0, 0, 0, .01);
}

.btn.btn-outline-success.float-right {
    background-color: rgba(0, 0, 0, .01);

}
.btn.btn-success {
    background-color: #218738;
}
 
/* /wcag */

#cover-spin {
    opacity: 0;
}

#cover-spin.htmx-request {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(0,0,0,0.3);
    z-index:9999;
    opacity: 1;
    transition: opacity 2s 0.5s linear;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:rgba(0,0,0,0.5);
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
