.elementor-kit-2885{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-2885 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Snackbar Container */
        #snackbar-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        /* Individual Snackbar */
        .snackbar {
            background: #ffffff;
            border: 1px solid #e1e5e9;
            border-radius: 12px;
            padding: 16px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            min-width: 300px;
            max-width: 400px;
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateX(420px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: auto;
            position: relative;
            backdrop-filter: blur(10px);
            border-left: 4px solid #10b981;
        }

        /* Show animation */
        .snackbar.show {
            transform: translateX(0);
            opacity: 1;
        }

        /* Hide animation */
        .snackbar.hide {
            transform: translateX(420px);
            opacity: 0;
        }

        /* Success variant */
        .snackbar.success {
            border-left-color: #10b981;
        }

        .snackbar.success .snackbar-icon {
            background: #10b981;
        }

        /* Error variant */
        .snackbar.error {
            border-left-color: #ef4444;
        }

        .snackbar.error .snackbar-icon {
            background: #ef4444;
        }

        /* Warning variant */
        .snackbar.warning {
            border-left-color: #f59e0b;
        }

        .snackbar.warning .snackbar-icon {
            background: #f59e0b;
        }

        /* Snackbar Icon */
        .snackbar-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
        }

        /* Snackbar Content */
        .snackbar-content {
            flex: 1;
        }

        .snackbar-title {
            font-weight: 600;
            font-size: 14px;
            color: #1f2937;
            margin: 0 0 4px 0;
        }

        .snackbar-message {
            font-size: 13px;
            color: #6b7280;
            margin: 0;
            line-height: 1.4;
        }

        /* Close Button */
        .snackbar-close {
            background: none;
            border: none;
            font-size: 18px;
            color: #9ca3af;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .snackbar-close:hover {
            background: #f3f4f6;
            color: #374151;
        }

        /* Progress Bar */
        .snackbar-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #10b981, #059669);
            border-radius: 0 0 12px 12px;
            width: 100%;
            transform-origin: left;
            animation: progressBar 5s linear forwards;
        }

        @keyframes progressBar {
            from { transform: scaleX(1); }
            to { transform: scaleX(0); }
        }

        .snackbar.error .snackbar-progress {
            background: linear-gradient(90deg, #ef4444, #dc2626);
        }

        .snackbar.warning .snackbar-progress {
            background: linear-gradient(90deg, #f59e0b, #d97706);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #snackbar-container {
                top: 10px;
                right: 10px;
                left: 10px;
            }

            .snackbar {
                min-width: unset;
                max-width: unset;
                transform: translateY(-100px);
            }

            .snackbar.show {
                transform: translateY(0);
            }

            .snackbar.hide {
                transform: translateY(-100px);
            }
        }

        /* Demo Styles */
        .demo-section {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .demo-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .demo-btn {
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.2s;
        }

        .demo-btn:hover {
            background: #2563eb;
        }

        .demo-btn.success { background: #10b981; }
        .demo-btn.success:hover { background: #059669; }
        
        .demo-btn.error { background: #ef4444; }
        .demo-btn.error:hover { background: #dc2626; }
        
        .demo-btn.warning { background: #f59e0b; }
        .demo-btn.warning:hover { background: #d97706; }/* End custom CSS */