.email-result-card {
            background-color: white;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            transition: all 0.2s ease;
            margin-bottom: 0.75rem;
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .email-result-card:hover {
            background-color: #f8f9fc;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        .email-address {
            font-family: 'Courier New', 'SF Mono', monospace;
            font-size: 0.95rem;
            word-break: break-all;
            color: #1e2a3e;
        }
        .copy-email-btn {
            background: none;
            border: none;
            color: var(--primary-color);
            transition: all 0.2s;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
        }
        .copy-email-btn:hover {
            background-color: rgba(70, 130, 180, 0.1);
            transform: scale(1.05);
        }
        .domain-custom-group {
            margin-top: 0.5rem;
            transition: all 0.2s;
        }
        .slider-label {
            display: flex;
            justify-content: space-between;
        }
        .feature-icon {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-right: 0.75rem;
        }
        .generated-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
            margin: 1rem 0 0.75rem 0;
        }
        .result-scroll {
            max-height: 460px;
            overflow-y: auto;
            padding-right: 4px;
        }
        .toast-custom {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1100;
            background: #1e2a3e;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 40px;
            font-size: 0.9rem;
            box-shadow: 0 6px 14px rgba(0,0,0,0.1);
            opacity: 0;
            transition: opacity 0.2s;
            pointer-events: none;
        }
        .toast-custom.show {
            opacity: 1;
        }
        .example-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .export-dropdown .dropdown-menu {
            min-width: 120px;
        }
        .stat-badge {
            background-color: #e9ecef;
            border-radius: 20px;
            padding: 0.2rem 0.7rem;
            font-size: 0.75rem;
            color: #2c3e50;
        }
        hr {
            margin: 0.5rem 0;
        }