/* properties ae made , and used according to need in html.
CSS class names that serve one particular purpose, and are named as such. Typically a class like . bg-blue would give you background-color: blue  */


.border{

    border: solid black 2px;
    margin: 3px;
}
.flex{
    display: flex;
}
.alignItem{
    align-items: center;
}

.justifyContent{
    justify-content: center;
}

.invert{
    filter: invert(1);
}

.bg-black{
    background-color: black;
    color: white;
}

.bg-grey{
    background-color: #1f1f1f;
}

.m-1{
    
    margin: 5px;
}

.rounded{
    border-radius: 10px;
}

.p-1{
    padding: 15px;
}

/* For WebKit browsers like Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #111; /* matches black website */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #555; /* light grey for contrast */
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #888; /* slightly lighter on hover */
  }
  
  /* Optional: Firefox support */
  * {
    scrollbar-width: thin;
    scrollbar-color: #555 #111;
  }

  .padding{
    padding: 10px;
  }

  .curspoint{
    cursor: pointer;
  }
  