/* analysis.css - 页面特定样式 */

  .analysis-container {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    border-top: 5px solid #3498db;
  
    /* 默认最小高度 */
    min-height: 600px;
  }
  
  /* 视口高度 ≥ 1080px 时 */
  @media (min-height: 1080px) {
    .analysis-container {
      min-height: 800px;
    }
  }
/* 搜索区域样式 */
/* .search-section {
  width: 100%;
  max-width: 1400px;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  border-radius: 0 0 15px 15px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 0 0;
} */

/* .tabs-container {
  width: 100%;
  max-width: 1400px;
  margin: 20px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  padding: 30px;
  border-top: 5px solid #3498db;
} */

.form-container {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.form-container h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.form-container textarea {
  min-height: 150px;
  resize: vertical;
  font-family: monospace;
}

.form-container .button {
  background: #3498db;
  color: white;
  transition: all 0.3s;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
}

.form-container .button:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.example-sequence {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
  font-family: monospace;
  font-size: 0.9rem;
  border-left: 3px solid #3498db;
}

.sequence-info {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #7f8c8d;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}



/* 新增蒙版样式 */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999;
}

/* 调整加载动画容器样式 */
#loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* CM SPINNER */
.cm-spinner {
    height: 150px;
    width: 150px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top: 4px solid #f15e41;
    -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
    position: relative;
}

.cm-spinner::before,
.cm-spinner::after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    right: 6px;
    border-radius: 50%;
    border: 4px solid transparent;
}

.cm-spinner::before {
    border-top-color: #bad375;
    -webkit-animation: 3s spin linear infinite;
    animation: 3s spin linear infinite;
}

.cm-spinner::after {
    border-top-color: #26a9e0;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Add word-wrapping for exampleChangeoData */
#exampleChangeoData {
/*          white-space: pre-wrap;*/
    word-wrap: break-word;
}
      
      
      
/* 响应式调整 */
@media (max-width: 768px) {
  .tabs-container {
    padding: 15px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .sequence-info {
    flex-direction: column;
  }
}
