.user-access-table {
    border-collapse: collapse;
    width: 100%;
}

.user-access-table th,
.user-access-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.user-access-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}


.last-access-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1890FF;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    line-height: 1.4;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    b
    {
        color: var(--brand-tertiary);
    }
}
.last-access-toast__text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-access-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.last-access-title
{
    font-size: 18px;
    padding: 2px;

}

.popup-content .popup__cta-wrapper.user-access-wrapper
{
    flex-direction: column;

}
.popup-wrapper .user-access-popup.popup
{
    overflow-x: hidden;
}
