﻿


.tabs {
    gap: 90px;
    padding: 20px 0 10px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
  
}

.tab-btn {
    /* padding: 8px 43px; */
    font-size: 15px;
    font-weight: 700;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 9px;
}

    .tab-btn:hover {
        color: #000;
    }

    .tab-btn.active {
        color: #000;
        font-weight: 700;
    }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 8%;
            width: 90%;
            height: 1px;
            background: orange;
           
        }
.tab-btn {
    margin-inline-end: 66px;
}

    .table-wrapper {
        /* padding: 10px 40px 40px; */
        /* max-width: 1200px; */
        margin: auto;
    }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th, td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

tr:hover {
    background: #fff7e6;
}

.coin-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
}

.coin-name {
  
    align-items: center;
}

.change.negative {
    color: #f44336;
}

.change.positive {
    color: #4caf50;
}

.trade-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

    .trade-btn:hover {
        background: #ffbe40;
    }

.pagination {
    text-align: center;
    padding: 10px 0;
    justify-content: center;
}

    .pagination button {
        background: none;
        border: 1px solid #ddd;
        padding: 6px 10px;
        margin: 0 2px;
        cursor: pointer;
        border-radius: 4px;
    }

        .pagination button.active {
            background: orange;
            color: white;
            border: none;
        }

.mini-chart {
    width: 100px;
    height: 40px;
}







