/**
 * Public AI Domain Discovery CSS
 * Clean, embeddable container - matches main site design system
 */

/* Reset for iframe embedding */
body {
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Main embeddable container */
#aepto-discovery-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    background: #ffffff;
    box-sizing: border-box;
}

/* Mode buttons - match main site */
.mode-btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.mode-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.mode-btn:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Submit button hover */
#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

/* Results grid - match main site */
#discoveryResults .card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#discoveryResults .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Alert gradient - match main site */
.alert-gradient {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #2d3748;
}

/* Responsive */
@media (max-width: 768px) {
    #aepto-discovery-container {
        padding: 1rem;
    }
    
    .mode-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    #aepto-discovery-container .ai-discovery-hero-section {
        padding: 1.5rem 1rem;
    }
    
    #aepto-discovery-container .ai-discovery-hero-section h1 {
        font-size: 1.5rem;
    }
}
