﻿.account-menu .list-group-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}

    .account-menu .list-group-item.active {
        background-color: #198754;
        border-color: #198754;
        color: #fff;
    }

    .account-menu .list-group-item:hover {
        background-color: #f5f5f5;
    }

/* KULLANICI SİPARİŞLERİ - MOBİL SCROLL */
.user-orders-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .user-orders-table table {
        min-width: 600px;
    }

    /* Scrollbar (isteğe bağlı) */
    .user-orders-table::-webkit-scrollbar {
        height: 6px;
    }

    .user-orders-table::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

.order-detail-wrapper {
    width: 100%;
    overflow: hidden !important;
}

.order-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
}

    .order-product-card img {
        width: 90px;
        height: 90px;
        object-fit: contain;
        border-radius: 12px;
        background: #f8fbfd;
    }

.order-product-info {
    flex: 1;
}

    .order-product-info h5 {
        font-size: 18px;
        margin-bottom: 8px;
    }

.order-product-meta {
    display: flex;
    gap: 12px;
    color: #64748b;
    font-size: 14px;
}

.order-product-total {
    margin-top: 8px;
    font-weight: 700;
    font-size: 16px;
}

/* MOBİL */
@media (max-width: 576px) {
    .order-product-card {
        gap: 10px;
        padding: 12px 0;
    }

        .order-product-card img {
            width: 70px;
            height: 70px;
        }

    .order-product-info h5 {
        font-size: 15px;
    }

    .order-product-meta {
        flex-direction: column;
        gap: 2px;
        font-size: 12px;
    }

    .order-product-total {
        font-size: 14px;
    }
}