#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #6C757D;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    z-index: 1000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.category-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.category-menu {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
}
.category-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 5px;
    width: 150px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.category-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background 0.3s ease, color 0.3s ease;
}
.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}
.arrow-left {
    left: 0;
}
.arrow-right {
    right: 0;
}

.selected {
    background-color: #6C757D;
    color: white;
}




.nav-pills {

    display: flex;
    justify-content: center;
}
.nav-pills .nav-item {
    margin-bottom: -2px; /* Yalnızca alt çizginin hizalanması için */
}
.nav-pills .nav-link {
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    color: #555;
    font-weight: 500;
    margin-right: 20px;
}
.nav-pills .nav-link.active, .show>.nav-link {
    color: #555 !important;
    background-color: transparent !important;
    border-top: 5px solid #ddd;

    border-bottom: transparent !important;
    border-radius: 0;
}

.nav-pills .nav-link.active {

}
.tab-content {
    padding: 20px;

}
