/* 移动端适配公共样式
   动态视口高度 h-dvh / min-h-dvh 直接用 Tailwind 4 内置工具类，无需自定义 */

/* iOS 输入框聚焦防缩放：font-size 不小于 16px */
input, textarea, select { font-size: 16px; }

/* 安全区适配（配合 viewport-fit=cover，避开 iPhone 顶部刘海 / 底部 Home Indicator） */
.pt-safe { padding-top: env(safe-area-inset-top); }
.pb-safe { padding-bottom: env(safe-area-inset-bottom); }

/* 消息列表触摸惯性滚动 + 防止整页橡皮筋下拉 */
.scroll-touch {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* 会话列表选中项：淡蓝色背景 + 深色文字
   （daisyUI menu-active 偏深、半透明灰文字对比度差，故自定义） */
.agent-item-active {
  background-color: #dbeafe !important; /* blue-100 */
}
.agent-item-active:hover {
  background-color: #bfdbfe !important; /* blue-200 */
}
/* 选中态下，副文字（id/时间）加深以保证可读性 */
.agent-item-active .opacity-60 {
  opacity: 1 !important;
  color: #1d4ed8 !important; /* blue-700 */
}
