﻿.auto-container {
    max-width: none !important;
}

.trading-style-five .table-outer .trading-table {
    min-width: auto !important;
}

.trading-style-five .table-outer tr td {
    padding-left: 10px;
}

.tabs-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.table-outer {
    width: 100%;
    overflow: visible;
    margin-bottom: 20px;
}

.trading-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border-radius: 4px;
    font-size: 13px;
    table-layout: auto;
}

    .trading-table thead {
        background-color: #B49D67;
    }

        .trading-table thead th {
            color: white;
            font-weight: 600;
            padding: 8px 10px;
            text-align: left;
            position: sticky;
            top: 0;
        }

    .trading-table tbody tr {
        border-bottom: 1px solid #f0f0f0;
    }

        .trading-table tbody tr:nth-child(odd) {
            background-color: #ffffff;
        }

        .trading-table tbody tr:nth-child(even) {
            background-color: #f8f8f8;
        }

        .trading-table tbody tr:hover {
            background-color: #f0f0f0 !important;
        }

    .trading-table td {
        padding: 8px 10px;
        text-align: left;
        line-height: 1.3;
        white-space: normal;
        word-break: break-word;
    }

        .trading-table th:nth-child(1),
        .trading-table td:nth-child(1) {
            width: 40%;
        }

        .trading-table th:nth-child(2),
        .trading-table td:nth-child(2),
        .trading-table th:nth-child(3),
        .trading-table td:nth-child(3) {
            width: 25%;
        }

        .trading-table th:nth-child(4),
        .trading-table td:nth-child(4) {
            width: 10%;
        }

@media (max-width: 768px) {
    .trading-table {
        font-size: 12px;
    }

        .trading-table th,
        .trading-table td {
            padding: 6px 8px;
        }

            .trading-table th:nth-child(1),
            .trading-table td:nth-child(1) {
                width: 35%;
            }

            .trading-table th:nth-child(2),
            .trading-table td:nth-child(2),
            .trading-table th:nth-child(3),
            .trading-table td:nth-child(3) {
                width: 27.5%;
            }
}

.category-container {
    flex: 1 1 45%;
    min-width: 350px;
    margin-bottom: 25px;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: #B49D67;
    margin: 25px 0 15px;
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

    .category-title::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #B49D67;
        border-radius: 2px;
    }

.price-purchase, .price-sales {
    font-weight: 800;
    color: #2a2a2a;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-icon {
    font-size: 14px;
}

.upper .status-icon {
    color: #28a745;
}

.lower .status-icon {
    color: #dc3545;
}

.chart-icon {
     max-width: none;
}

.trading-style-five .table-outer tbody td {
    font-size: 19px;
    line-height: 20px;
    color: var(--title-color);
    padding: 16px 0px;
    font-weight: 700;
    text-transform: uppercase;
}