/* Minimal modern card layout */
.bb-wrap { max-width: 880px; margin: 24px auto; padding: 8px; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
.bb-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; }
.bb-card { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 12px; box-shadow: 0 4px 16px rgba(0,0,0,.04); cursor: pointer; transition: transform .15s ease, box-shadow .2s ease; }
.bb-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.bb-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 12px; }
.bb-avatar { width: 100%; height: 140px; display:flex; align-items:center; justify-content:center; background:#f3f4f6; color:#111; font-weight:700; border-radius:12px; font-size: 48px; }
.bb-card h4 { margin: 8px 0 4px; font-size: 16px; }

.bb-meta { display:flex; gap:8px; justify-content: space-between; color:#444; }

.bb-times { display: flex; flex-wrap: wrap; gap: 8px; }
.bb-time { padding: 10px 14px; border-radius: 999px; border: 1px solid #ddd; background: #fff; cursor: pointer; }
.bb-time:hover { background:#111; color:#fff; }

.bb-form { display: grid; gap: 10px; }
.bb-form input, .bb-form textarea { width: 100%; padding: 10px 12px; border-radius: 12px; border: 1px solid #ddd; }
.bb-form textarea { min-height: 80px; }

.bb-nav { margin-top: 12px; display:flex; gap:8px; }
.bb-next, .bb-back { padding: 10px 14px; border-radius: 10px; border: 1px solid #ddd; background:#fff; cursor:pointer; }
.bb-next { background:#111; color:#fff; border-color:#111; }
.bb-next[disabled] { background:#ddd; border-color:#ddd; cursor:not-allowed; }

.bb-modal { position: fixed; inset: 0; background: rgba(0,0,0,.45); display:flex; align-items:center; justify-content:center; z-index: 99; }
.bb-modal-content { background: #fff; padding: 20px; border-radius: 16px; width: min(560px, 92vw); }
.bb-summary-row { display:flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed #eee; }
.bb-primary { background:#0e7490; color:#fff; border: 1px solid #0e7490; padding: 10px 14px; border-radius: 10px; }



/* Inline calendar */
.bb-calendar { border:1px solid #eee; border-radius:16px; padding:12px; background:#fff; box-shadow: 0 4px 16px rgba(0,0,0,.03); }
.bb-cal-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.bb-cal-title { font-weight:600; }
.bb-cal-nav { border:1px solid #ddd; background:#fff; border-radius:8px; padding:6px 10px; cursor:pointer; }
.bb-cal-grid { display:grid; grid-template-columns: repeat(7, 1fr); gap:6px; }
.bb-cal-wd .bb-cal-w { text-align:center; font-size:12px; color:#666; padding:6px 0; }
.bb-cal-cell { padding:10px 0; background:#f9fafb; border:1px solid #eee; border-radius:10px; text-align:center; cursor:pointer; }
.bb-cal-cell.bb-empty { background:transparent; border:none; cursor:default; }
.bb-cal-cell.bb-disabled { opacity:.4; cursor:not-allowed; }
.bb-cal-cell.bb-selected { background:#111; color:#fff; border-color:#111; }



