/* test-overlay.css - Toast notifications & premium overlay styles */
/* Extracted from inline <style> blocks */

.test-toast-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            pointer-events: none;
        }
        
        .test-toast {
            background-color: #ffffff;
            border: 3px solid #18181b;
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            box-shadow: 6px 6px 0px #18181b;
            max-width: 350px;
            pointer-events: auto;
            transform: translateY(150%);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
        }

        .test-toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .test-toast-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .test-toast-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #18181b;
            background-color: #fef08a;
            border: 1.5px solid #18181b;
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            box-shadow: 1.5px 1.5px 0px #18181b;
        }

        .test-toast.premium .test-toast-title {
            background-color: #a7f3d0;
        }

        .test-toast-close {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            color: #18181b;
            padding: 0.2rem;
            line-height: 1;
            transition: all 0.2s ease;
        }

        .test-toast-close:hover {
            transform: scale(1.1);
            color: #dc2626;
        }

        .test-toast-body {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            color: #1f2937;
            line-height: 1.5;
        }

        @media (max-width: 480px) {
            .test-toast-container {
                left: 16px;
                right: 16px;
                bottom: 16px;
            }
            .test-toast {
                max-width: none;
            }
        }
