body {font-family: Arial, Helvetica, sans-serif;}
html {zoom: 90%;}
.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    width: 10%;
  }

  #myInput {
    background-image: url('/css/searchicon.png');
    background-position: 10px 12px;
    background-repeat: no-repeat;
    width: auto;
    overflow: auto;
    font-size: 16px;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
  }
  
.navbar {
  width: 100%;
  background-color: #0d2242;
  overflow: auto;
}

.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  background-color: #265d31;
}

.active {
  background-color: #552157;
}

@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    /* border: none; */
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.6s;
    font-size: 17px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #a7a4a4;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 20px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
  }
  
  /* Fade in tabs */
  @-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }

 /* jsoncrackEmbed */
  section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  textarea {
    width: 100%;
    height: 100%;
  }
  
  #jsoncrackEmbed {
    flex: 1;
    order: 2;
    width: 100%;
    height: 100vh;
    border: none;
  }

  .cti-stix-visualization {
    width: 100%;
    height: 100vh;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Optional: Add some padding and center the iframe content */
  .cti-stix-visualization iframe {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    color: #333;
    font-size: 18px;
    font-family: Arial, sans-serif;
  }
  
