
body {
    background-color: #000; 
    color: #fff; 
    font-family: 'Source Code Pro', monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
  }
  
 
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><circle cx="5%" cy="10%" r="1" fill="white" /><circle cx="15%" cy="20%" r="1" fill="white" /><circle cx="25%" cy="5%" r="1" fill="white" /><circle cx="35%" cy="15%" r="1" fill="white" /><circle cx="45%" cy="25%" r="1" fill="white" /><circle cx="55%" cy="10%" r="1" fill="white" /><circle cx="65%" cy="20%" r="1" fill="white" /><circle cx="75%" cy="5%" r="1" fill="white" /><circle cx="85%" cy="15%" r="1" fill="white" /><circle cx="95%" cy="25%" r="1" fill="white" /><circle cx="10%" cy="35%" r="1" fill="white" /><circle cx="20%" cy="45%" r="1" fill="white" /><circle cx="30%" cy="55%" r="1" fill="white" /><circle cx="40%" cy="65%" r="1" fill="white" /><circle cx="50%" cy="75%" r="1" fill="white" /><circle cx="60%" cy="85%" r="1" fill="white" /><circle cx="70%" cy="95%" r="1" fill="white" /><circle cx="80%" cy="35%" r="1" fill="white" /><circle cx="90%" cy="45%" r="1" fill="white" /><circle cx="5%" cy="55%" r="1" fill="white" /><circle cx="15%" cy="65%" r="1" fill="white" /><circle cx="25%" cy="75%" r="1" fill="white" /><circle cx="35%" cy="85%" r="1" fill="white" /><circle cx="45%" cy="95%" r="1" fill="white" /><circle cx="55%" cy="35%" r="1" fill="white" /><circle cx="65%" cy="45%" r="1" fill="white" /><circle cx="75%" cy="55%" r="1" fill="white" /><circle cx="85%" cy="65%" r="1" fill="white" /><circle cx="95%" cy="75%" r="1" fill="white" /></svg>');
    animation: stars 20s linear infinite;
    z-index: -1;
  }
  
  @keyframes stars {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-100%);
    }
  }
  
 
  .container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(29, 29, 29, 0.9); 
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
  }
  
  
  .header {
    font-size: 30px;
    text-align: left;
    color: #fff; 
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
  }
  
  .subheader {
    font-size: 20px;
    text-align: left;
    margin-top: 10px;
    color: #ccc;
  }
  
 
  #searchBar {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    margin-bottom: 20px;
  }
  
  #searchBar::placeholder {
    color: #888;
  }
  

  #searchResults {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
  }
  
  .result-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
  }
  
  .result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
  }
  
  .result-item h4 {
    margin: 0;
    font-size: 18px;
    color: #fff;
  }
  
  .result-item p {
    margin: 5px 0;
  }
  
  .result-item .key {
    font-weight: bold;
    color: #fff;
  }
  
  .result-item .value {
    color: #ccc;
  }
  
  
  .advanced-view-btn {
    padding: 8px 12px;
    background-color: #444; 
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
  }
  
  .advanced-view-btn:hover {
    background-color: #555;
  }
  
  
  .advanced-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 10px;
    padding: 0 10px;
    background-color: #333;
    border-radius: 5px;
    color: #ccc;
    font-family: 'Source Code Pro', monospace;
  }
  
  .result-item.expanded .advanced-details {
    max-height: 500px; 
    padding: 10px;
    overflow-y: auto; 
  }
  
  
  .json-entry {
    margin: 5px 0;
  }
  
  .json-key {
    font-weight: bold;
    color: #fff;
  }
  
  .json-value {
    color: #ccc;
  }
  
  .nested-object {
    margin-left: 20px;
    border-left: 1px solid #555;
    padding-left: 10px;
  }
  
  ul {
    list-style-type: none;
    padding-left: 20px;
    margin: 5px 0;
  }
  
  ul li {
    margin: 3px 0;
  }