/**
 * Smart Recommendations Styles
 * 
 * Styles for the Smart Recommendations section of the plugin.
 */

.smart-recommendations-section {
  margin: 30px 0;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.recommendations-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.recommendation-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: #f9f9f9;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-align: center;
}

.recommendation-icon {
  margin-bottom: 15px;
}

.recommendation-icon .dashicons {
  font-size: 36px;
  width: 36px;
  height: 36px;
  color: #2271b1;
}

.recommendation-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: #2271b1;
}

.recommendation-card p {
  margin-bottom: 15px;
  color: #666;
  min-height: 60px;
}