/**
 * css/mobile/mobile-watchlist.css
 * 自選清單手機版兩欄小卡樣式
 */

@media (max-width: 767px) {

#tabWatchlist {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

#watchlistContainerMobile {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 8px;
}

.mwl-group { margin-bottom: 16px; }
.mwl-group-name { font-size: 11px; color: #8b949e; padding: 0 4px 8px; font-weight: 500; }
.mwl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mwl-card {
  background: #161b22; border: 0.5px solid #21262d;
  border-radius: 10px; padding: 8px 10px; cursor: pointer; min-width: 0;
  box-sizing: border-box;
}
.mwl-card:active { opacity: .75; }
.mwl-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.mwl-code { font-size: 12px; font-weight: 700; color: #e6edf3; }
.mwl-name { font-size: 10px; color: #8b949e; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 52px; }
.mwl-card-price { text-align: right; flex-shrink: 0; }
.mwl-price { font-size: 13px; font-weight: 700; }
.mwl-chg   { font-size: 11px; margin-top: 2px; }
.mwl-spark { height: 28px; width: 100%; margin-top: 4px; }
.mwl-spark svg { display: block; width: 100%; }
.mwl-loading, .mwl-empty { text-align: center; color: #8b949e; font-size: 13px; padding: 40px 0; }

} /* end @media */
