body .toast.aw-feedback-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: #6B46C1;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
    z-index: 10000;
    animation: aw-feedback-toast-enter 0.3s ease;
    font-family: Inter, sans-serif;
    font-size: 14px;
}

body .toast.aw-feedback-toast-success {
    background: #10B981;
}

body .toast.aw-feedback-toast-error {
    background: #EF4444;
}

body .toast.aw-feedback-toast-leaving {
    animation: aw-feedback-toast-exit 0.3s ease;
}

.loader.aw-feedback-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.spinner.aw-feedback-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #2D2D3F;
    border-top-color: #6B46C1;
    border-radius: 50%;
    animation: aw-feedback-spinner-rotate 1s linear infinite;
}

@keyframes aw-feedback-toast-enter {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes aw-feedback-toast-exit {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes aw-feedback-spinner-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    body .toast.aw-feedback-toast,
    body .toast.aw-feedback-toast-leaving,
    .spinner.aw-feedback-spinner {
        animation: none;
    }
}

.drill-designer-clipboard-fallback {
    position: fixed;
    top: 0;
    left: -9999px;
    opacity: 0;
}
