.border-b {
    border-width: 1px;
}

#table-body tr:hover {
    background-color: #f8fafc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sticky-header th {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-dot {
    display: inline-block;
    min-width: 0.75rem;
    min-height: 0.75rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 0, 0, 0.2);
}

.status-animation {
    animation: flicker 2s infinite;
}

#pagination-container {
    height: 56px;
}

table {
    height: calc(100% - 56px);
}

.pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e2e8f0;
    margin: 0 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.pagination-bullet.active {
    opacity: 1;
}

.pagination-bullet:not(.active) {
    opacity: 0.5;
}

.page-loader {
    --uib-size: 50px;
    --uib-color: #c09eff;
    --uib-speed: 1s;
    --uib-stroke: 3.5px;
    width: var(--uib-size);
    height: calc(var(--uib-size) * 0.9);
}

.page-loader-bar {
    width: var(--uib-stroke);
    height: 100%;
    background-color: var(--uib-color);
    transition: background-color 0.3s ease;
}

.page-loader-bar:nth-child(1) {
    animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.45) infinite;
}

.page-loader-bar:nth-child(2) {
    animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.3) infinite;
}

.page-loader-bar:nth-child(3) {
    animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.15) infinite;
}

.page-loader-bar:nth-child(4) {
    animation: grow var(--uib-speed) ease-in-out infinite;
}

.toggle-checkbox:checked {
    right: 0;
    border-color: #68d391;
}

.toggle-checkbox:checked + .toggle-label {
    background-color: #68d391;
}

#g_a11y_announcement {
    display: none;
}

@keyframes grow {

    0%,
    100% {
        transform: scaleY(0.3);
    }

    50% {
        transform: scaleY(1);
    }
}

@keyframes flicker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}