.loading {
    width: 100px;
    height: 100px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.table_component .crypto-table_header .crypto-table_row th[data-sort] {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.table_component .crypto-table_header .crypto-table_row th[data-sort]:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

/* Hover-Effekt für den gesamten Header-Bereich */
.table_component .crypto-table_header .crypto-table_row th[data-sort]:hover .table_head_content {
    color: rgb(255, 227, 141) !important;
}

/* Visuellen Indikator hinzufügen */
.table_component .crypto-table_header .crypto-table_row th[data-sort] .table_head_content {
    position: relative;
}

.table_component .crypto-table_header .crypto-table_row th[data-sort] .table_head_content::after {
    content: "↕";
    margin-left: 5px;
    opacity: 0.5;
    font-size: 12px;
    transition: opacity 0.3s ease;
}

.table_component .crypto-table_header .crypto-table_row th[data-sort]:hover .table_head_content::after {
    opacity: 1;
}

/* Aktive Sortierung anzeigen */
.table_component .crypto-table_header .crypto-table_row th[data-sort].sorted-asc .table_head_content::after {
    content: "↑";
    opacity: 1;
}

.table_component .crypto-table_header .crypto-table_row th[data-sort].sorted-desc .table_head_content::after {
    content: "↓";
    opacity: 1;
}

.table_component .crypto-table_header .crypto-table_row th[data-sort] .table_head_content {
    font-weight: 700 !important; /* oder 700 für noch dicker */
}

/* Beim Hover noch deutlicher machen */
.table_component .crypto-table_header .crypto-table_row th[data-sort]:hover .table_head_content {
    font-weight: 700 !important;
}
