/**
 * Advisto URL Handler - CSS Styles
 * Optional styles for loading states and custom actions
 */

.advisto-custom-action {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.advisto-custom-action:hover {
    opacity: 0.8;
}

.advisto-custom-action.advisto-loading {
    opacity: 0.6;
    cursor: wait;
    pointer-events: none;
}

.advisto-custom-action.advisto-loading::after {
    content: " ⏳";
    margin-left: 5px;
}
