.loader {
    display: none;
}

.htmx-request .loader {
    display: flex;
}

.htmx-request .loader-hide {
    display: none;
}

.htmx-request.loader {
    display: flex;
}

.validation-summary-errors ul {
    list-style: disc;
    padding-left: 2rem;
}

.action-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 25;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slide-in 1s ease-in;
}

.action-buttons-container.attached {
    transform: none;
    animation: none;
}

.action-buttons-inner {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@keyframes slide-in {
    from {
        transform: translate(0vw, -50vh);
    }

    to {
        transform: translate(0vw, 0vh);
    }
}

.points circle {
    cursor: pointer;
}

tr.safari-overlay {
    /* 
        fix for ENG-4964
        https://kycglobal.atlassian.net/browse/ENG-4964
    */

    transform: translate(0);
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
}