.border{
    border: 2px solid red;
    margin: 3px;
}

.flex{
    display: flex;
}

.justify-content{
    justify-content: center;
}

.items-center{
    align-items: center;
}

.bg-black{
    background-color: black;
    color: white;
}

.bg-grey{
    background-color: #121212;
}

.invert{
    filter: invert(1);
}

.rounded{
    border-radius: 7px;
}

.m-1{
    margin: 5px;
}

.p-1{
    padding: 10px;
}
img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

/* Custom Scrollbar for Webkit Browsers (e.g., Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 14px; /* Width of the scrollbar */
    height: 14px; /* Height of horizontal scrollbar (optional) */
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a); /* Gradient track background */
    border-radius: 10px; /* Rounded edges for the track */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5); /* Subtle inner shadow */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #444, #888); /* Gradient thumb */
    border-radius: 10px; /* Rounded edges for the thumb */
    border: 3px solid #1e1e1e; /* Matches the track background for a hollow effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Adds a soft shadow for depth */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #666, #aaa); /* Lighter gradient on hover */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow on hover */
}

/* For Firefox */
html {
    scrollbar-width: thin; /* Makes the scrollbar thinner */
    scrollbar-color: linear-gradient(135deg, #444, #888) linear-gradient(135deg, #1e1e1e, #2a2a2a); /* Custom colors for thumb and track */
}

/* For IE/Edge (legacy) */
body {
    -ms-overflow-style: scrollbar; /* Ensures scrollbars appear in legacy Edge/IE */
}



