@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
}

body {
    padding: 15px;
    background-color: #0E213F !important;
    color: white !important;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid white;
    padding: 50px 0px 70px;
    gap: 10px;
}

.show-entries {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.show-entries select {
    margin: 0 5px;
    padding: 5px;
    border: 1px solid #ffffff;
    background-color: white;
    border-radius: 3px;
}

.search-filter {
    display: flex;
    align-items: center;
}

.search-filter input {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
    min-width: 200px;
}

.search-filter button {
    padding: 5px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
    background-color: #0E213F;
}

table {
    width: 100%;
    border-collapse: collapse;
}


.clogo {
    text-align: center !important;
}

.chart {
    text-align: center !important;
}

.inline {
    font-weight: 300;
    width: 150px;
    display: inherit !important;
}

.logo {
    text-align: center !important;
}

.options {
    text-align: center;
}

tr {
    border-bottom: 1px solid white !important;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid white;
    background-color: #0E213F !important;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
    position: sticky;
    top: 0;
}

tr:nth-child(even) {
    background-color: #0E213F;
}

.chart-img {
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 3px;
}

.btns {
    padding: 12px 20px;
}

.buy-sell-btn {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.buy-btn,
.sell-btn {
    padding: 6px 15px;
    border: none;
    border: 2px solid #09A7D7;
    background-color: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.buy-btn {
    width: 100%;
    background-color: #ffffff;
    color: #363636;
    margin-right: 4px;
}

.sell-btn {
    width: 100%;
    background-color: #ffffff;
    color: #363636;
    margin-left: 4px;
}

.cart-icon {
    margin-right: 4px;
}

.wishlist-btn {
    width: 100%;
    padding: 6px 4px;
    border: none;
    border: 2px solid #09A7D7;
    background-color: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pagination-info {
    font-size: 14px;
    color: #ffffff;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-numbers a {
    padding: 5px 10px;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.page-numbers a.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.page-numbers a:hover:not(.active) {
    background-color: #f1f1f1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-filter {
        width: 100%;
        margin-top: 10px;
    }

    .search-filter input {
        flex-grow: 1;
        min-width: auto;
    }

    th,
    td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    th,
    td {
        padding: 6px 8px;
        font-size: 13px;
    }

    .buy-btn,
    .sell-btn,
    .wishlist-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .chart-img {
        width: 25px;
        height: 18px;
    }

    .pagination {
        flex-direction: column;
        gap: 10px;
    }

    .pagination-info {
        text-align: center;
    }
}