/* ai-coach.css：頁籤、AI 教練解析區 */

.pulsar-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
  }
  
  .tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .tab-btn.active {
    color: #ff4500;
    border-bottom: 3px solid #ff4500;
  }
  
  .tab-content { display: none; }
  .tab-content.active { display: block; }
  
  .ai-coach-trigger {
    background: #fff;
    border: 1.5px solid #ff4500;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
  }
  
  .ai-coach-trigger:hover { background: #fff5f0; }
  
  .trigger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .trigger-header .text {
    color: #ff4500;
    font-weight: bold;
    font-size: 15px;
  }
  
  .ai-response-box {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #ffe0d0;
    line-height: 1.8;
    color: #444;
    font-size: 14px;
    text-align: left;
    max-height: 400px;
    overflow-y: auto;
    white-space: normal;
    word-wrap: break-word;
  }