
.modelLoaderWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modelLoaderWrapper .loaders {    
  --r1: 154%;
  --r2: 68.5%;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%; 
  background:
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#1790b5c2 80%),
    radial-gradient(var(--r1) var(--r2) at bottom,#1790b5c2 79.5%,#0000 80%),
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#1790b5c2 80%),
    #ccc;
  background-size: 50.5% 220%;
  background-position: -100% 0%,0% 0%,100% 0%;
  background-repeat:no-repeat;
  animation: animateloders 2s infinite linear;
}

@keyframes animateloders {
    33%  {background-position:    0% 33% ,100% 33% ,200% 33% }
    66%  {background-position: -100%  66%,0%   66% ,100% 66% }
    100% {background-position:    0% 100%,100% 100%,200% 100%}
}

/*** toast message style start ***/
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--r);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(15, 31, 46, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
    pointer-events: none;
    z-index: 99999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

/*** toast message style end ***/

.wrapbadge .badge-green{
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #16a34a;
}
.wrapbadge .badge-danger{
    background: #fee2e2;
    color: #dc2626;
}

.tablehistory .original {
  font-size: 12px;
  color: #999;
}

.tablehistory .cldate{
    font-family:'JetBrains Mono';
    font-size:0.75rem;
}
.tablehistory .tdlog{
    font-size: 13px;
    color: #666;
}

.tablehistory .tdRestore{
 cursor: pointer;
}

/* .tdhide{
    display: none;
    opacity: 0;
} */
.hide{
    display: none;
    opacity: 0;
}
.actTdbtn{
    margin-bottom:5px;
}

.pagetilecontent{
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-dim);
    padding: 0 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
.pagecontent {
    display: block;
    padding: 26px 0 10px 0;
}
