  .card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1rem;
  }
  
  .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
/* 添加更具体的选择器来覆盖全局pre样式 */
.bg-dark {
    background-color: #343a40 !important;
    color: #fff !important;
    font-family: monospace;
}

.bg-dark pre {
    background-color: #343a40 !important;
    color: #fff !important;
    margin: 0;
    padding: 0;
}

.bg-dark code {
    color: #fff !important;
    background: transparent !important;
}
  
  pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  code {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .list-unstyled {
    padding-left: 0;
  }
  
  .list-unstyled li {
    margin-bottom: 0.5rem;
  }
  
  .text-success {
    color: #28a745;
  }
