/* Expert Chats minimal styles */
.ec-container { max-width:1200px; margin: 18px auto; padding: 0 12px; }
.ec-controls { display:flex; gap:10px; margin-bottom:12px; align-items:center; }
#ec-expert-search { flex:1; padding:8px 10px; border-radius:6px; border:1px solid #ccc; }
#ec-expert-category { padding:8px 10px; border-radius:6px; border:1px solid #ccc; }

.ec-cards { display:flex; flex-wrap:wrap; gap:12px; justify-content:flex-start; }
.ec-card { width: 300px; background:#fff; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06); padding:12px; display:flex; }
.ec-card-inner { display:flex; gap:10px; align-items:flex-start; }
.ec-avatar img { width:80px; height:80px; border-radius:50%; object-fit:cover; border:2px solid #eee; }
.ec-meta { flex:1; }
.ec-name { margin:0; font-size:16px; }
.ec-title { font-size:13px; color:#555; margin-top:4px; }
.ec-short { font-size:13px; color:#333; margin-top:8px; }
.ec-actions { margin-top:10px; }
.ec-actions .ec-chat-btn { padding:8px 12px; border-radius:8px; border:none; background:#0073aa; color:#fff; cursor:pointer; }
.ec-no { color:#666; }

/* small responsive */
@media (max-width:720px) {
  .ec-card { width: 100%; }
}