/* ========================
   FRONTEND UI
======================== */

#preloader-ss-irs {
    position: relative;
    display: flex;
    height: 33px;
    margin: 20px auto 0;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    background: #fff;
    width: 100%;
    border-radius: 12px;
}


#preloader-ss-irs span {
    position: absolute;
    height: 9px;
    width: 3px;
    background-color: #83b700;
    border-radius: 3px;
    transform: rotate(calc(var(--i) * -30deg - 120deg)) translateY(12px);
    animation: ddd-preloader-animate 0.9s linear infinite;
    animation-delay: calc(-0.075s * var(--i));
}

@keyframes ddd-preloader-animate {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.table-container.ddd-ready {
    display: block !important;
}



.ddd-container {
    color: #00bb00;
    padding: 22px;
    font-family: 'BB Pro Display', Sans-Serif;
    border-radius: 8px;
}

.unified-color {
    color: #f8f8fa;
}

.datetime {
    display: block;
    text-align: center;
    padding-bottom: 8px;
    font-weight: 600;
    font-size: 36px;
    line-height: 1em;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .datetime {
        font-size: 24px;
        letter-spacing: 0.012em;
    }
    .ddd-container {
    padding: 16px;
}
}

.last-access-time54,
.user-info54 {
    text-align: center;
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 0.01em;
    line-height: 1.5em;
    color: #00bb00;
    display: block;
}

@media (max-width: 767px) {
    .last-access-time54,
    .user-info54 {
        font-size: 19px;
    }
    
    
}

.my-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    word-break: break-word;
    margin-block-end: 80px;
}

.my-table td,
.my-table th {
    padding: 8px;
    vertical-align: top;
    border: 1px solid hsla(0, 0%, 50.2%, 0.2);
    font-family: 'BB Pro Text', Sans-Serif;
    font-size: 14px;
    line-height: 1.32;
    letter-spacing: -0.016em;
    color: #00bb00;
}

.header-cell {
    backdrop-filter: blur(20px);
    font-weight: 600;
    color: #f5f5f7 !important;
    font-size: 14px;
    padding: 12px 8px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
    display: flex;
    margin-top: 32px;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
}

.table-container {
    overflow: hidden;
}