.center-column-flex
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.start-column-flex
{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.center-row-flex
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.start-row-flex
{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
}

.r2c0-row-flex
{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: end;
}

.r1c1-col-flex
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.r1c0-col-flex
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.r0c1-row-flex
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.stockminds-scrollbar::-webkit-scrollbar {
    height: 100%;
    width: 0.4vw; /* Scrollbar width */
    left: 0;
  }
  
  .stockminds-scrollbar::-webkit-scrollbar-track {
    background: #000000; /* Track background */
    border-radius: 5px;
    transform: translateX(-1vw);
  }
  
  .stockminds-scrollbar::-webkit-scrollbar-thumb {
    background: #383738; /* Scroll thumb color */
    border-radius: 5px;
  }
  
  .stockminds-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker on hover */
  }