@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.bg-white {
  background-color: white;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.rounded {
  border-radius: 0.25rem; /* 4px */
}

.padding {
  padding-left: 2rem; /* 32px */
  padding-top: 0.75rem; /* 12px */
  padding-bottom: 0.75rem; /* 32px */
  margin-bottom: 1rem; /* 16px */
}

.icon-collapsed, .icon-expanded {
  width: 24px; /* Adjust the size as needed */
  height: 24px;
  margin-top: 6px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-collapsed {
  display: inline-block; /* Show only the collapsed icon initially */
  margin-right: 8px;
}

.icon-expanded {
  display: inline-block; /* Hide the expanded icon initially */
  margin-right: 8px;
}

.text-xl {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 1rem; /* 16px */
}

.font-semibold {
  font-weight: 600;
}

.bg-gray-100 {
  background-color: #f7fafc;
}

.p-4 {
  padding: 1rem; /* 16px */
}

.rounded-lg {
  border-radius: 0.5rem; /* 8px */
}

.font-bold {
  font-weight: 700;
}

.language-python {
  /* Add specific styles for Python code if needed */
}

.text-lg {
  font-size: 1.125rem; /* 18px */
  margin-top: 1.5rem; /* 24px */
}

.cursor-pointer {
  cursor: pointer;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.fa-chevron-down {
  /* Add specific styles for font awesome icon if needed */
}

.jx-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
}

.jx-header {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.jx-account-info, .jx-change-password {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}

.jx-label {
  display: block;
  margin-bottom: 5px;
  color: #666;
}

.jx-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.jx-button {
  background: #6200ea;
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
}

.jx-button:hover {
  background: #3700b3;
}

.jx-logout-button {
  background: #d32f2f;
}

.jx-logout-button:hover {
  background: #9a0007;
}

.smaller {
  font-size: 0.9em; /* Adjust as needed */
}

.code-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy-btn {
  padding: 5px 10px;
  margin-left: 10px; /* Space between code and button */
  cursor: pointer;
  /* Add more styling as needed */
}

.sidebar-tree .current-page > .reference,
.toc-tree li.scroll-current>.reference {
  color: hsl(262.1 83.3% 57.8%);
}

@media (prefers-color-scheme: dark) {
  .sidebar-tree .current-page > .reference,
  .toc-tree li.scroll-current>.reference {
    color: hsl(263.4 70% 50.4%);
  }
}

.theme-toggle {
  display: none;
}

