/* AI Results Styling */
.ai-result-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.ai-result-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ai-result-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.ai-result-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.ai-result-actions {
    flex-shrink: 0;
}

.ai-copy-btn {
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-copy-btn:hover {
    background: #5856EB;
    transform: translateY(-1px);
}

.ai-copy-btn:active {
    transform: translateY(0);
}

/* Error message styling */
.ai-error-message {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

/* Loading state for button */
.ai-generate-btn:disabled {
    background: #6B7280 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ai-result-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .ai-result-actions {
        align-self: stretch;
    }
    
    .ai-copy-btn {
        width: 100%;
    }
}
