/* * Custom styles for LegitEBusiness.com
 * Assumes Inter font is loaded in index.html
 * Assumes Tailwind CSS is loaded in index.html
 */

/* Social share card generated with Gemini */
   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f3f4f6;
			justify-content: center;
            align-items: center;
			min-height: 100vh;
            width: 100%;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .share-btn {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .share-btn:active {
            transform: translateY(0);
        }

        .tooltip {
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tooltip.show {
            visibility: visible;
            opacity: 1;
        }
    

/* Add any custom utility classes or overrides here */