/* Modern Variables */
:root {
    --primary-orange: #EA6C2F;
    --secondary-orange: #FCA843;
    --primary-gray: #a6a9ae;
    --secondary-gray: #7f8083;
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-5px);
}

/* Base Styles */
body {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    font-family: sans-serif;
    line-height: 1.6;
}

.img-inner {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed);
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: black;
    text-decoration: none;
}

/*---------------------------------------------------------------Start-of-Nav------------------------------------------------------------------------------------*/

.navbar {
    background: linear-gradient(to right, var(--primary-gray), var(--secondary-gray));
    padding: 1rem 0;
    transition: all var(--transition-speed);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-speed);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

.navbar-dark .navbar-toggler {
    color: black;
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(235, 151, 49);
    font-weight: bold;
}

.navbar-dark .navbar-brand {
    color: black;
}

.navbar-brand {
    display: inline-block;
    font-size: 1.25rem;
    line-height: inherit;
    margin-right: 0px;
}

.navbar-brand:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.sm-icons {
    flex-direction: row;
}

i:hover {
    transform: scale(1.05);
    transition: all 0.1s ease-in-out;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 25px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

ul li a:hover {
    color: #5dba48;
    transform: scale(1.02);
    transition: all 0.1s ease-in-out;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: black;
    text-align: left;
    list-style: none;
    background: linear-gradient(to bottom, #a6a9ae, #7f8083);
    background-clip: none;
    border: none;
    border-radius: 0px;
}

@media only screen and (max-width: 960px) {
    .sm-icons .nav-item {
        padding-right: 1em;
    }
}

/*-------------------------------------------------------------End-of-NAV---------------------------------------------------------------------------------*/

/*-------------------------------------------------------------Start-Jumbotron---------------------------------------------------------------------------*/

.jumbotron {
    height: 350px;
    padding: 0px 0px;
    margin-bottom: 0px;
    background: linear-gradient(to bottom, #a6a9ae, #7f8083);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 20px 50px 0 rgba(0, 0, 0, 0.19);
}

.bg-image {
    background: url(bg.png);
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

/*-------------------------------------------------------------End-Jumbotron---------------------------------------------------------------------------*/

/*-------------------------------------------------------------Start-About-us-Card---------------------------------------------------------------------------*/
.card-block {
    background: linear-gradient(to bottom, #a6a9ae, #7f8083);
    font-size: 1em;
    position: relative;
    margin: 0;
    padding: 1em;
    border: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.ck_logo {
    padding-top: 5px;
    float: right;
}

.ck_logo:hover {
    transform: scale(1.05);
    transition: all 0.1s ease-in-out;
}

.py-3 {
    margin-top: 50px;
}

.card-title {
    margin-bottom: 25px;
    color: black;
}

.card-text {
    font-size: 1.5rem;
}
/*-------------------------------------------------------------End-About-us-Card---------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------Start-Carousel-------------------------------------------------------------------*/

.carousel {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: white;
    max-width: 12px;
    margin: 0 3px;
    height: 12px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

/*---------------------------------------------------------------------------End-Carousel-------------------------------------------------------------------*/

/*-------------------------------------------------------------Start-Shop-Cards---------------------------------------------------------------------------*/
.shop-header {
    margin-top: 10px;
    text-align: center;
    font-size: 80px;
    color: black;
}

.shop-bg-img {
    background: url(ckbg2.png);
}

.shop-header:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 30%;
    margin-top: -20px;
    border-bottom: 1px solid black;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    overflow: hidden;
    border: none;
    margin-top: 20px;
}

.card:hover {
    transform: var(--hover-transform);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-img:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.shop-wrap {
    margin-top: 5px;
    text-align: center;
    width: 100%;
    height: 500px;
}

.card-img {
    height: 250px;
    padding: 15px 15px;
    margin-bottom: 5px;
    filter: drop-shadow(2px 5px 5px black);
}

.shop-title {
    text-align: center;
    font-weight: 300;
    margin-top: 10px;
}

/*-------------------------------------------------------------End-Shop-Cards---------------------------------------------------------------------------*/
/*------------------------------------------------------------sponsors-------------------------------------------------------------------------------*/

.sponsors-header {
    margin-top: 10px;
    text-align: center;
    font-size: 80px;
    color: black;
}

.sponsor-bg {
    background: rgba(255, 255, 255, 0.95);
    padding: calc(var(--spacing-unit) * 4) 0;
}

.sponsors-header:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 30%;
    margin-top: -10px;
    border-bottom: 1px solid black;
}

.booras_logo {
    display: block;
    padding: 15px 15px 15px 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    filter: drop-shadow(5px 10px 10px black);
}

.booras_logo:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.goldstar_logo {
    padding: 15px 15px 15px 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(5px 10px 10px black);
}

.goldstar_logo:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.sharpshack_logo {
    padding: 15px 15px 15px 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(5px 10px 10px black);
}

.sharpshack_logo:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.envious_logo {
    display: block;
    padding: 15px 15px 15px 15px;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(5px 10px 10px black);
}

.envious_logo:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.bold-city-logo {
    display: block;
    padding: 15px 15px 15px 15px;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(5px 10px 10px black);
}

.bold-city-logo:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.sponsors-description {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    color: black;
}

.sponsor-img {
    transition: all var(--transition-speed);
    filter: grayscale(20%);
}

.sponsor-img:hover {
    filter: grayscale(0%);
    transform: var(--hover-transform);
}

/*-------------------------------------------------------------------------end-sponsors------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------Start-YoutTube-------------------------------------------------------------------*/

.yt {
    display: block;
    margin-bottom: 60px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.yt-header {
    margin-top: 65px;
    text-align: center;
    font-size: 80px;
    color: black;
}

.yt-header:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 30%;
    margin-top: -20px;
    border-bottom: 1px solid black;
}

/*---------------------------------------------------------------------------End-Youtube-------------------------------------------------------------------*/

/*---------------------------------------------------------------------------Start-Ritter-------------------------------------------------------------------*/
.ct-bottom {
    padding: 30px 30px 30px;
}
.ritter-wrap {
    margin-top: 60px;
    text-align: center;
    width: 500px;
    height: 350x;
    padding-top: 45px;
}

.RR-title {
    color: black;
    margin-bottom: 5px;
    margin-top: 60px;
}

.RR_logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(5px 10px 10px black);
}

.RR_logo:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

.RR {
    text-align: center;
    color: black;
    margin-bottom: 50px;
}

.bg-ritter {
    background: linear-gradient(to bottom, #a6a9ae, #7f8083);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.ritter-title {
    text-align: center;
    font-weight: bold;
    color: black;
}

.ritter-title:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 70%;
    padding-top: 10px;
    border-bottom: 1px solid black;
}

p {
    margin-bottom: 0px;
}

.ritter-link {
    text-align: center;
    padding: 10px 80px 10px;
    color: black;
}

.pb {
    margin-top: 20px;
    margin-bottom: 20px;
}
/*---------------------------------------------------------------------------End-Ritter-------------------------------------------------------------------*/

/*---------------------------------------------------------------------------Start-Footer-------------------------------------------------------------------*/

footer {
    background: linear-gradient(to right, var(--primary-gray), var(--secondary-gray));
    color: var(--text-light);
    padding: calc(var(--spacing-unit) * 3) 0;
}

.content-wrap {
    text-align: center;
}

.info-link-ct {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin-left: 20px;
}

.hover:hover {
    color: rgb(252, 168, 67);
    transform: scale(1.05);
    transition: all 0.1s ease-in-out;
    padding: 15px;
}

.hover {
    padding: 10px;
}

.media-buttons {
    font-size: 20px;
}

.right-info {
    display: flex;
}

.left-info {
    display: flex;
}

.left1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
}

.left2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
}

.right1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
}

.right2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
}

.left-title-1,
.left-title-2,
.right-title-1,
.right-title-2 {
    margin-top: 10px;
    color: black;
    font-size: 30px;
}

.left1-link,
.left2-link,
.right1-link,
.right2-link {
    color: black;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 20px;
}

#button-3:hover #circle-2 {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

.left1-link:hover {
    color: rgb(252, 168, 67);
    transform: scale(1.05);
    transition: all 0.1s ease-in-out;
    text-decoration: none;
}
.left2-link:hover {
    color: rgb(252, 168, 67);
    transform: scale(1.05);
    transition: all 0.1s ease-in-out;
    text-decoration: none;
}
.right1-link:hover {
    color: rgb(252, 168, 67);
    transform: scale(1.05);
    transition: all 0.1s ease-in-out;
    text-decoration: none;
}
.right2-link:hover {
    color: rgb(252, 168, 67);
    transform: scale(1.05);
    transition: all 0.1s ease-in-out;
    text-decoration: none;
}

/*---------------------------------------------------------------------------End-Footer-------------------------------------------------------------------*/

/*---------------------------------------------------------------------------Button-------------------------------------------------------------------*/
#circle {
    width: 0%;
    height: 0%;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background: black;
    position: absolute;
    transition: all 0.5s ease-Out;
    top: 20px;
    left: 70px;
}
#circle-1 {
    width: 0%;
    height: 0%;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgb(252, 168, 67);
    position: absolute;
    transition: all 0.5s ease-Out;
    top: 20px;
    left: 70px;
}

.button-shop {
    display: inline-block;
    height: 40px;
    width: auto;
    padding: 0 20px;
    border: 2px solid black;
    margin: 0 auto;
    color: black; /* Ensure text is black */
    background-color: transparent;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1.5px;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
    text-decoration: none; /* No underline */
}

.button-shop:hover {
    transform: scale(1.05); /* Hover effect */
    color: black; /* Keep text black on hover */
    text-decoration: none; /* Ensure no underline on hover */
}

.button-shop a {
    color: inherit; /* Inherit the color from parent */
    text-decoration: inherit; /* Inherit text-decoration */
}

.button-shop a:hover {
    color: inherit; /* Keep hover styles consistent */
    text-decoration: none; /* No underline */
}

.button-rr {
    display: inline-flex;
    height: 40px;
    width: 150px;
    border: 2px solid black;
    margin: 20px 20px 50px 20px;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#button-3 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#button-ritter {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#button-3 a {
    position: relative;
    transition: all 0.45s ease-Out;
}

#button-ritter a {
    position: relative;
    transition: all 0.45s ease-Out;
}

#button-ritter:hover #circle-1 {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

#button-3:hover #circle {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

#button-3:hover a {
    color: #a6a9ae;
    text-decoration: none;
    font-weight: bold;
    font-size: small;
}

#button-ritter:hover a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: small;
}

#button-ritter:hover #circle-1 {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

.button {
    display: inline-flex;
    height: 40px;
    width: 150px;
    border: 2px solid orange;
    margin: 20px 20px 20px 20px;
    color: #bfc0c0;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

a {
    color: black;
    text-decoration: none;
    letter-spacing: 1px;
}

#circle-2 {
    width: 0%;
    height: 0%;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background: white;
    position: absolute;
    transition: all 0.5s ease-Out;
    top: 20px;
    left: 70px;
}

/*---------------------------------------------------------------------------End-Button-------------------------------------------------------------------*/

@media screen and (max-width: 820px) {
    .info-link-ct {
        padding-top: 32px;
    }
}

@media screen and (max-width: 820px) {
    .left-info,
    .right-info {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    body {
        display: inline-block;
        background: linear-gradient(
            to right,
            rgba(234, 108, 47),
            rgb(252, 168, 67)
        );
        height: 100%;
        overflow: auto;
        background-attachment: fixed;
    }
}

@media (min-width: 1300px) {
    .container {
        max-width: 1140px;
    }

    .shop-section {
        height: 600px;
        background-color: gray;
        margin-top: 100px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 100%;
    }
}

@media screen and (max-width: 709px) {
    .bg-image {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media screen and (max-width: 320px) {
    .bg-image {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media screen and (max-width: 767px) {
    .pb-3,
    .py-3 {
        padding-top: 5rem;
        padding-bottom: 4rem !important;
    }
    .randy-container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media screen and (max-width: 640px) {
    .randy-container {
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    .pl-3 {
        padding-top: 3rem;
        padding-bottom: 1rem !important;
    }

    .px-3 {
        padding-top: 3rem;
        padding-bottom: 1rem !important;
    }

    .responsive {
        max-width: 900px;
    }
}

@media screen and (max-width: 1199px) {
    .ritter-wrap {
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        height: 400px;
        padding-top: 45px;
    }
    .yt-header:after {
        content: "";
        display: block;
        margin: 0 auto;
        width: 50%;
        margin-top: -20px;
        border-bottom: 1px solid black;
    }
    .shop-header:after {
        content: "";
        display: block;
        margin: 0 auto;
        width: 50%;
        margin-top: -20px;
        border-bottom: 1px solid black;
    }
    section {
        background-color: gray;
        margin-top: 100px;
    }
}

@media screen and (max-width: 976px) {
    .ritter-wrap {
        height: 350px;
    }
}

@media screen and (max-width: 990px) {
    .navbar-brand {
        margin-left: 10px;
    }
    .navbar-toggler {
        margin-right: 10px;
    }

    .RR-title {
        margin-top: 40px;
    }
}

@media screen and (max-width: 760px) {
    .yt-header:after {
        content: "";
        display: block;
        margin: 0 auto;
        width: 70%;
        margin-top: -20px;
        border-bottom: 1px solid black;
    }
    .shop-header:after {
        content: "";
        display: block;
        margin: 0 auto;
        width: 70%;
        margin-top: -20px;
        border-bottom: 1px solid black;
    }
}

@media screen and (max-width: 682px) {
    .ritter-wrap {
        height: 300px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 549px) {
    .ritter-wrap {
        height: 500px;
    }

    .card-text {
        font-size: 30px;
    }

    h4 {
        font-size: 2rem;
    }

    p {
        font-size: 25px;
    }

    a {
        font-size: 20px;
    }

    .ritter-link {
        font-size: 30px;
    }

    .fa {
        font-size: 40px;
    }

    .nav-link {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 991px) {
    .shop-wrap {
        margin-top: 10px;
        text-align: center;
        width: 100%;
        height: 500px;
        padding: 20px 20px 20px;
    }
    .container-responsive {
        max-width: 500px;
    }
}
@media screen and (max-width: 991px) {
    .card-img {
        height: 300px;
        width: 350px;
        filter: drop-shadow(5px 10px 10px black);
    }
}

/* Modern Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-orange);
    border: none;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    position: relative;
}

.section-header:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Modern Image Styles */
.img-inner {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed);
}

/* Modern Form Elements */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    padding: 0.75rem;
    transition: all var(--transition-speed);
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(234, 108, 47, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-unit: 0.75rem;
    }
    
    .navbar-brand img {
        width: 140px;
        height: auto;
    }
    
    .section-header {
        margin-bottom: calc(var(--spacing-unit) * 2);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modern Grid Layout */
.grid-container {
    display: grid;
    gap: var(--spacing-unit);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gray);
}
