.kalmeri-crypto-table {
    font-family: Arial, sans-serif;
    background-color: transparent;
    color: white;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    overflow-x: auto;
}
.kalmeri-crypto-table table {
    width: 100%;
    border-collapse: collapse;
}
.kalmeri-crypto-table th, .kalmeri-crypto-table td {
    padding: 10px;
    text-align: right;
    border-bottom: 1px solid #444;
    white-space: nowrap;
}
.kalmeri-crypto-table th {
    font-weight: bold;
    background-color: #1a1a1a;
}
.kalmeri-crypto-table tr:nth-child(odd) td {
    background-color: #2a2a2a;
}
.kalmeri-crypto-table tr:nth-child(even) td {
    background-color: #333;
}
.kalmeri-crypto-table .positive {
    color: #00ff00; /* Green for positive percentages */
}
.kalmeri-crypto-table .negative {
    color: #ff0000; /* Red for negative percentages */
}

/* Responsive design for mobile */
@media (max-width: 600px) {
    .kalmeri-crypto-table tbody {
        display: block;
        overflow-x: auto;
    }
    .kalmeri-crypto-table th, .kalmeri-crypto-table td {
        display: block;
        text-align: left;
        padding: 8px;
    }
    .kalmeri-crypto-table th {
        display: none;
    }
    .kalmeri-crypto-table td {
        position: relative;
        padding-left: 50%;
    }
    .kalmeri-crypto-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
        white-space: nowrap;
    }
    .kalmeri-crypto-table tr {
        display: block;
        margin-bottom: 15px;
    }
    .kalmeri-crypto-table td:nth-child(1):before { content: "Münt"; }
    .kalmeri-crypto-table td:nth-child(2):before { content: "1h %"; }
    .kalmeri-crypto-table td:nth-child(3):before { content: "24h %"; }
    .kalmeri-crypto-table td:nth-child(4):before { content: "7p %"; }
    .kalmeri-crypto-table td:nth-child(5):before { content: "30p %"; }
    .kalmeri-crypto-table tr:nth-child(odd) td {
        background-color: #2a2a2a;
    }
    .kalmeri-crypto-table tr:nth-child(even) td {
        background-color: #333;
    }
    .kalmeri-crypto-table td:nth-child(1)::before {
        content: "Münt";
        display: none;
    }
}