html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.jsonContent {
    white-space: pre-wrap; /* Preserves whitespace and line breaks */
    font-family: monospace; /* Monospace font for readability */
    max-width: 600px;
    overflow-x: scroll;
}

#table-container {
    padding: 16px; /* Adds padding inside the div */
    margin: 20px 0; /* Adds some vertical margin */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    background-color: #f9f9f9; /* Light background color for contrast */
}