#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.drag-drop-row td {
    border-top: 2px solid var(--rz-primary) !important;
    border-bottom: 2px solid var(--rz-primary) !important;
}

.drag-drop-icon-container {
    display: none;
}

.drag-drop-column {
    border-right: none !important;
}

#wa-main-loader {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 10000;
}

#wa-main-loader-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    animation: spin .9s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.clamp-lines {
    max-height: 4.5em;
    overflow-y: auto;
}

@keyframes highlightBlink {
    0% {
        background-color: #ffcccc;
    }

    25% {
        background-color: #ff6666;
    }

    50% {
        background-color: #ffcccc;
    }

    75% {
        background-color: #ff6666;
    }

    100% {
        background-color: #ffcccc;
    }
}

.service-highlight {
    animation: highlightBlink 2s ease-in-out 3; /* slow cycle, more blinks */
}

.option-badge {
    border-radius: 16px;
    padding: 4px 10px;
    border: 1px solid #c5a6ff;
    display: flex;
    align-items: center;
    background: #f7f1ff;
}
