 body {
      font-family: "Inter", sans-serif;
      background-color: #000000;
      color: #cbd5e1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    summary::-webkit-details-marker {
      display: none;
    }
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #111;
    }
    ::-webkit-scrollbar-thumb {
      background-color: #2563eb;
      border-radius: 10px;
      border: 2px solid #111;
    }
    details[open] > div {
      animation: expand 0.3s ease forwards;
    }
    details > div {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
    }
    details[open] > div {
      max-height: 1000px; 
    }
    @keyframes expand {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .tool-content {
      opacity: 1 !important;
      max-height: none !important;
      overflow: visible !important;
      transition: none !important;
    }
    .tool-content.hidden {
      display: none !important;
    }