/* Additional custom CSS if needed */

body {
    font-family: Arial, sans-serif;
}

h1{
    color: #52D273;
}
h2{
    color: #E57254;
}
h3 {
    color: #00FFFF;
}

.discord-link {
    background-color: #7289DA;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    display: inline-block;
}
.discord-link:hover {
    background-color: #5a6fa7;
}

code {
    background-color: #333;
    color:greenyellow;
    padding: 2px 5px;
    border-radius: 3px;
}

ul,
ol {
    padding-left: 20px;
}

ul {
    list-style-type: none;
}

li {
    margin-bottom: 10px;
    margin-top: 10px;
}

body {
    --fbc-blue-60: #0060df;
    --fbc-blue-70: #003eaa;
    --fbc-gray-20: #ededf0;
    --fbc-light-gray: #F0F0F4;
    --fbc-white: #ffffff;
    --fbc-transition: all .15s cubic-bezier(.07, .95, 0, 1);
    --fbc-borders: 1px solid #ededf0;
    --fbc-primary-text: #15141A;
    --fbc-secondary-text: #5B5B66;
    --fbc-font-size: 13px;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.h-screen {
    height: 100vh;

}
.faq-item {
    padding: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
menu,
ol,
ul {
    list-style: none;
}
.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.h-full {
    height: 100%;
}

.flex {
    display: flex;
}


.p-4 {
    padding: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}
a {
    color: yellow;
    text-decoration: inherit;
}

body {
    margin: 0;
    line-height: inherit;
}

.bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

.bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}

/* Custom styles */
body {
    font-family: Arial, sans-serif;
}

p {
    color: #BBC0C4;
}

ul {
    list-style-type: none;
}

.code-block {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
}
.nav-icon {
    background: linear-gradient(180deg, #007FFF, #00FFFF);
}

.company-logo {
    /* Adjust as necessary for the company logo's actual colors */
    color: #FFA500;
}

/* Custom logo fonts or styles */
.product-logo {
    color: #00FFFF;
}

ul {
    list-style-type: none;
    /* Removes the default list bullet */
    padding: 0;
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
    /* Adds some space between list items */
}

li ul {
    margin-left: 20px;
    /* Indents the nested list for better visual hierarchy */
}

.content {
    display: none;
    /* Hide all content by default */
}

.content.active {
    display: block;
    /* Show the active content */
}

#content {
    margin-left: 220px; /* Adjusts the left margin to make space for the menu */
    padding: 20px;      /* Optional: adds some padding inside the content div */
}

#menu {
    position: fixed;   /* Keeps the menu fixed on the screen */
    top: 0;            /* Aligns the menu at the top of the viewport */
    left: 0;           /* Aligns the menu to the left side of the viewport */
    width: 200px;      /* You can adjust the width as necessary */
    height: 98%;      /* Makes the menu stretch full height of the viewport */
    overflow-y: auto;  /* Allows scrolling within the menu if needed */
    z-index: 1000;     /* Ensures the menu stays on top of other content */
}

.container {
    display: flex; /* Use flexbox to lay out children side by side */
    justify-content: center; /* Center the children horizontally */
    align-items: center; /* Align the children vertically */
    gap: 20px; /* Add some space between the children */
  }
  .container img {
    max-width: 70%; /* Limit the image width to 50% of the container */
    height: auto; /* Maintain the aspect ratio of the image */
  }

  .container-div {
    display: flex;
  }
  .fullsize-div {
    flex-grow: 1; /* Takes up all available space */
  }