* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Times New Roman', Times, serif; */
  /* background: black; */
  /* color: white; */
}

.navbar-docs {
  background-image: linear-gradient(180deg, #7e41ff, #6a3df5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.navbar-search .search-input {
  background: transparent;
  color: #fff;
  padding-left: 2rem;
  padding-right: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.5rem;
  height: 2rem;
}
.navbar-search .search-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.navbar-search .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.homepage {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  background-image: linear-gradient(
      180deg,
      rgba(var(--bs-body-bg-rgb), 0.01),
      rgba(var(--bs-body-bg-rgb), 1) 85%
    ),
    radial-gradient(
      ellipse at top left,
      rgba(var(--bs-primary-rgb), 0.5),
      transparent 50%
    ),
    radial-gradient(
      ellipse at top right,
      rgba(var(--bd-accent-rgb), 0.5),
      transparent 50%
    ),
    radial-gradient(
      ellipse at center right,
      rgba(var(--bd-violet-rgb), 0.5),
      transparent 50%
    ),
    radial-gradient(
      ellipse at center left,
      rgba(var(--bd-pink-rgb), 0.5),
      transparent 50%
    );
  /* padding: 3rem 0; */

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  background-attachment: fixed;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.security-updates-banner {
  background-color: #f7de79;
  color: #3d3d3d;
  padding: 12px 24px;
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5%;
}

.lead {
  font-size: 1rem;
}

.lh-1 {
  line-height: 1 !important;
}

.masthead-followup-icon {
  padding: 1rem;
  color: rgba(var(--bg-rgb), 1);
}

.code-box {
  /* background-color: #1e1e1e; */
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); */
  overflow-x: auto; 
  /* Enables horizontal scrolling */
  overflow-y: hidden;
  /* scrollbar-width: thin; */
  scrollbar-color: #888 #1e1e1e;
}

.icon-box {
  width: 80px;
  height: 80px;
  background-color: rgb(42, 131, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  /* margin: 0 auto 1rem auto; */
  color: blue;
}

.bi-code {
  color: #6a3df5;
}

.code-block {
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;        /* Enables horizontal scrolling */
  overflow-y: hidden;      /* Hides vertical scrollbar */
  font-family: monospace;
  white-space: pre;        /* Prevents text from wrapping */
  
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #888 #1e1e1e;
}

.icon-box-2 {
  width: 80px;
  height: 80px;
  background-color: pink;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  /* margin: 0 auto 1rem auto; */
  color: blue;
}

.braces-icon {
  color: red;
}