/* General reset and box-sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  object-fit: contain;
  font-family: 'Open Sans', sans-serif;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 5px;
  height: 9px;
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}

.scrollable-tabs-container {
    font-family: "Roboto", sans-serif;
    background: #000;
    max-width: 70%;
    margin: 16px auto;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  
  .scrollable-tabs-container svg {
    width: 24px;
    height: 24px;
    padding: 8px;
    cursor: pointer;
    color: #fff;
    border-radius: 50%;
    pointer-events: auto;
  }
  
  .scrollable-tabs-container ul {
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  
  .scrollable-tabs-container ul.dragging a {
    pointer-events: none;
  }
  
  .scrollable-tabs-container ul.dragging {
    scroll-behavior: auto;
  }
  
  .scrollable-tabs-container ul::-webkit-scrollbar {
    display: none;
  }
  
  .scrollable-tabs-container a {
    color: #fff;
    text-decoration: none;
    background: #333;
    padding: 4px 24px;
    display: inline-block;
    border-radius: 4px;
    user-select: none;
    white-space: nowrap;
  }
  
  .scrollable-tabs-container a.active {
    background: #fff;
    color: #000;
  }
  
  .scrollable-tabs-container .right-arrow,
  .scrollable-tabs-container .left-arrow {
    position: absolute;
    height: 100%;
    width: 100px;
    top: 0;
    display: none;
    align-items: center;
    padding: 0 10px;
    pointer-events: none;
  }
  
  .scrollable-tabs-container .right-arrow.active,
  .scrollable-tabs-container .left-arrow.active {
    display: flex;
  }
  
  .scrollable-tabs-container .right-arrow {
    right: 0;
    background: linear-gradient(to left, #000 50%, transparent);
    justify-content: flex-end;
  }
  
  .scrollable-tabs-container .left-arrow {
    background: linear-gradient(to right, #000 50%, transparent);
  }
  
  .scrollable-tabs-container svg:hover {
    background: #333;
  }

 /* Tab content styling */
.tab-content {
  display: none;
  padding: 16px;
  background: #000;
  border-radius: 4px;
  overflow-y: auto;
  margin: 20px auto;
  max-width: 70%;
}
 
.tab-content.active {
  width: 100%;
  display: block; 
  overflow-y: auto;
}

.gfm-embed {
  width: 100%;
  background: #000;
  background-color: black;
  border-radius: 5px;
  padding: 20px; /* Optional: Adds padding around the widget */
  display: inline-block; /* Optional: Ensures the size wraps tightly around the content */
}