    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background-color: #121212;
        color: #e0e0e0;
        overflow-x: hidden;
        height: 100vh; /* Volle Höhe des Viewports */
    }

    .social-icons {
        display: flex;
        gap: 5px;
        align-items: center;
    }

.copy-trade-button {
    padding: 4px 8px;
    background: linear-gradient(149deg, #00b300, #008000);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 179, 0, 0.7);
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.copy-trade-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.9);
}

    .dex-button {
        display: block;
        padding: 4px 8px;
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        color: #fff;
        text-decoration: none;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 12px;
        font-family: 'Inter', sans-serif;
        text-transform: uppercase;
    }
    .dex-button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 6px rgba(0, 179, 0, 0.9);
    }
    .dex-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: blur(5px);
        opacity: 0.5;
        z-index: -1;
    }

    .solscan-button {
        padding: 6px 10px;
        background: #2a2a2a;
        color: #e0e0e0;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    .solscan-button img {
        width: 16px;
        height: 16px;
    }
    .solscan-button:hover {
        background: #333;
        transform: scale(1.05);
    }

    .dex-button[href*="gmgn.ai"]::before {
        background-image: url('https://gmgn.ai/favicon.ico');
    }
    .dex-button[href*="photon-sol.tinyastro.io"]::before {
        background-image: url('https://photon-sol.tinyastro.io/favicon.ico');
    }
    .dex-button[href*="axiom.trade"]::before {
        background-image: url('https://axiom.trade/favicon.ico');
    }
    .dex-button[href*="trade.padre.gg"]::before {
        background-image: url('https://trade.padre.gg/favicon.ico');
    }
    .dex-button[href*="neo.bullx.io"]::before {
        background-image: url('https://neo.bullx.io/favicon.ico');
    }

    .navbar {
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        padding: 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
        height: 70px;
    }
    .navbar-content {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }
    .nav-links {
        list-style: none;
        display: flex;
        gap: 30px;
        margin: 0;
        padding: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .nav-links li a {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .nav-links li a:hover {
        color: #00FFFF;
    }
    .chain-selector {
        margin-left: auto;
    }
    .chain-form {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .custom-dropdown {
        position: relative;
        width: 100px;
    }
    .dropdown-selected {
        padding: 8px 12px;
        background: #2a2a2a;
        color: #e0e0e0;
        border: 1px solid #444;
        border-radius: 5px;
        font-size: 18px;
        height: 40px;
        display: flex;
        align-items: center;
        cursor: pointer;
        position: relative;
    }
    .dropdown-selected img {
        margin-right: 8px;
    }
    .dropdown-arrow {
        position: absolute;
        right: 8px;
        font-size: 12px;
        color: #e0e0e0;
    }
    .dropdown-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2a2a2a;
        border: 1px solid #444;
        border-radius: 5px;
        z-index: 1000;
    }
    .dropdown-option {
        padding: 8px 12px;
        display: flex;
        align-items: center;
        font-size: 18px;
        color: #e0e0e0;
        cursor: pointer;
    }
    .dropdown-option:hover {
        background: #333;
    }
    .dropdown-option img {
        margin-right: 8px;
    }
    .custom-dropdown:hover .dropdown-options {
        display: block;
    }
    .chain-selector button {
        padding: 8px 15px;
        background: linear-gradient(149deg, #00b300, #008000);
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 0 10px rgba(0, 179, 0, 0.7);
        font-size: 18px;
        height: 40px;
        width: 120px;
    }
    .chain-selector button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 179, 0, 0.9);
    }
    .chain-icon {
        width: 18px;
        height: 18px;
        vertical-align: middle;
    }

    /* Three-Column Layout */
    .main-content {
        display: flex;
        flex-direction: row;
        height: calc(100vh - 70px - 40px);
        padding: 20px;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
        position: fixed;
        top: 70px;
        left: 0;
    }

    .column {
        flex: 1;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .column::-webkit-scrollbar {
        display: none;
    }

    /* First Column: Transaction Table */
    .transaction-column {
        flex: 1;
    }
    .transactions-box {
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        flex: 1;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .transactions-box::-webkit-scrollbar {
        display: none;
    }
    .transactions-box table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 5px;
        background-color: #1e1e1e;
        white-space: nowrap;
    }
    .transactions-box tr {
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .transactions-box td {
        padding: 8px;
        text-align: left;
        vertical-align: middle;
        font-size: 14px;
    }
    .transactions-box tr:hover {
        background: linear-gradient(149deg, rgb(46,59,57) 0%, rgba(40,40,40,1) 53%);
        transform: scale(1.02);
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    }
    .bar-cell {
        width: 5px;
        padding: 0;
        margin: 0;
    }
    .bar-cell div {
        width: 3px;
        height: 30px;
        margin: 2px auto;
        border-radius: 2px;
    }
    .buy-glow { box-shadow: 0 0 10px #00b300; }
    .sell-glow { box-shadow: 0 0 10px #ff3333; }
    .swap-glow { box-shadow: 0 0 10px #a855f7; }
    .buy-text { color: #00b300; font-weight: bold; }
    .sell-text { color: #ff3333; font-weight: bold; }
    .swap-text { color: #a855f7; font-weight: bold; }
    .whale-transaction {
    background: linear-gradient(149deg, #1a2a44 0%, #0f1c33 53%) !important;
    }
    .insider-transaction {
        background: linear-gradient(149deg, #3b1c1c 0%, #2a0f0f 53%) !important;
    }
    .insider-count {
        color: #ff4444; /* Dunkelrot für Insider */
        font-weight: bold;
    }
    .whale-count {
        color: #1a73e8; /* Dunkelblau für Whales */
        font-weight: bold;
    }
    .token-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #fff;
        object-fit: cover;
    }

    /* Second Column: Information Section */
    .info-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .info-column::-webkit-scrollbar {
        display: none;
    }
    /* Chart Container */
#chartContainer {
    background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    flex: 1;
    position: relative;
}

#transactionChart, #kolChart {
    display: block;
    width: 100%;
    height: 200px;
}

/* Chart Toggle Buttons */
.chart-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.chart-toggle-button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: #2a2a2a;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.chart-toggle-button.active {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.chart-toggle-button:hover {
    transform: scale(1.1);
}

/* Chart Info */
.chart-info {
    padding: 5px 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #fff;
}

.chart-info div {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 10px;
}
    .dial-charts-row {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }
    .dial-box-container {
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        flex: 1;
        display: flex;
        flex-direction: column; /* Vertikale Ausrichtung */
        align-items: center;
        gap: 10px;
    }
    .dial-box-container h3 {
        font-size: 16px;
        color: #ffffff; /* Weiß */
        margin-bottom: 5px;
        text-align: center;
    }
    .dial-chart {
        width: 150px; /* Größe wie in data-size definiert */
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .dial-description {
        text-align: center;
    }
    .dial-description p {
        font-size: 12px;
        color: #b0b0b0;
    }
    .boxes-row {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }
    .box {
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .box h2 {
        font-size: 20px;
        color: #00FF00;
        text-align: center;
    }
/* Top KOL Trader Styling */
.top-trader-box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Inhalt horizontal */
    text-align: center; /* Zentriert Text für Konsistenz */
}
.top-trader-content {
    display: flex;
    align-items: center; /* Vertikale Ausrichtung von Bild und Details */
    justify-content: center; /* Zentriert den gesamten Inhalt horizontal */
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%; /* Nutzt die volle Breite der Box */
    max-width: 350px; /* Etwas breitere max-width für Buttons */
    box-sizing: border-box;
}
.top-trader-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.top-trader-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start; /* Behält die linksbündige Ausrichtung der Details */
    min-width: 0; /* Verhindert Überlauf */
}
.top-trader-name-profit {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-trader-name {
    font-size: 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}
.top-trader-profit {
    font-size: 14px;
    color: #00FF00;
    font-family: 'Inter', sans-serif;
}
.top-trader-buttons {
    display: flex;
    gap: 8px; /* Reduzierter Abstand für kompakte Darstellung */
    align-items: center;
    flex-wrap: nowrap; /* Verhindert Umbrechen der Buttons */
}
/* Hourly KOL Volume Styling */
.volume-box {
    text-align: center;
}
.volume-box h2 {
    font-size: 20px;
    color: #ffffff; /* Weiße Überschrift */
    text-align: center;
}
.big-value {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
}
.box-value {
    font-style: italic;
    color: #aaa;
    margin: 5px 0;
    font-size: 14px;
}
.spy-wallet-button {
    padding: 4px 8px;
    background: linear-gradient(149deg, #1e90ff, #0047ab);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.7);
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.spy-wallet-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.9);
}
    .button {
        display: inline-block;
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        color: #fff;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 20px;
        margin: 5px;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
    .button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 10px #004e43;
    }
    #chartContainer {
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        flex: 1;
    }
    #transactionChart {
        display: block;
        width: 100%;
        height: 200px;
    }
    .chart-info {
        padding: 5px 0;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: #fff;
    }
    .chart-info div {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin: 0 10px;
    }
    .glow-purple { box-shadow: 0 0 10px #a855f7; }
    .glow-green { box-shadow: 0 0 10px #00B746; }
    .glow-red { box-shadow: 0 0 10px #EF403C; }

    /* Third Column: Top ROI Tokens */
    .token-column {
        flex: 1;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .token-column::-webkit-scrollbar {
        display: none;
    }
.token-list-wrapper {
    background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    flex: 1;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative; /* Für absolute Positionierung des Tip-Buttons */
}
    .token-list-wrapper::-webkit-scrollbar {
        display: none;
    }

.token-list-wrapper h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00FF00;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

    #topRoiList {
        padding: 10px;
    }

    .token-item {
        display: flex;
        flex-direction: column;
        background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
        border-radius: 8px;
        padding: 10px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        position: relative;
    }

    /* Kein Hover-Effekt */
    .token-item:hover {
        transform: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }

    .token-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .token-actions {
        position: absolute;
        top: 5px;
        right: 5px;
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .token-row-1 {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .token-image-column {
        flex: 0 0 auto;
    }

    .token-image {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
    }

    .token-image-placeholder {
        width: 40px;
        height: 40px;
        background: #333;
        border-radius: 50%;
    }

    .token-info-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .token-name-symbol-roi {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
    }

    .token-name {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
    }

    .copy-mint {
        font-size: 12px;
        color: #b0b0b0;
        cursor: pointer;
        transition: color 0.3s;
    }

    .copy-mint:hover {
        color: #78F8EC;
    }

    .token-symbol {
        font-size: 11px;
        color: #00FF00;
        font-family: 'Inter', sans-serif;
    }

    .token-roi {
        font-size: 11px;
        color: #00FF00;
        font-family: 'Inter', sans-serif;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .outdated-coin {
        color: #FFA500; /* Orange */
        font-size: 10px;
        font-family: 'Inter', sans-serif;
        font-style: italic;
    }

    .token-details {
        display: flex;
        gap: 10px;
        font-size: 12px;
        color: #b0b0b0;
        font-family: 'Inter', sans-serif;
        align-items: center;
        flex-wrap: wrap;
    }

    .market-cap span, .dev-bought span {
        color: #00FF00;
    }

    .kol-count {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
    }

    .kol-count i {
        color: #00FF00;
        margin-right: 5px;
    }

    .view-button {
        padding: 4px 8px;
        background: linear-gradient(149deg, #00b300, #008000);
        color: #fff;
        text-decoration: none;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 0 10px rgba(0, 179, 0, 0.7);
        font-size: 12px;
        font-family: 'Inter', sans-serif;
        text-transform: uppercase;
        display: inline-block;
    }

    .view-button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 179, 0, 0.9);
    }

    .token-row-2 {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .dex-button-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 5px;
        background: rgba(50, 50, 50, 0.5);
        border-radius: 8px;
        justify-content: center;
        width: 100%;
    }

    .no-tokens {
        text-align: center;
        color: #b0b0b0;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        padding: 20px;
    }

    .remove-token {
        color: red;
        font-size: 16px;
        cursor: pointer;
        user-select: none;
        z-index: 10;
        background: #333;
        border: 1px solid #555;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .remove-token:hover {
        color: red;
        background: #444;
    }

    footer {
        position: fixed;
        bottom: 0;
        height: 40px;
        width: 100%;
        text-align: center;
        color: #e0e0e0;
        font-size: 14px;
        z-index: 100;
        padding: 10px;
    }
    footer a {
        color: #78F8EC;
        text-decoration: none;
        margin: 0 10px;
    }
    footer a:hover {
        text-decoration: underline;
    }
    .hamburger {
        display: none;
        font-size: 24px;
        color: #ffffff;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }
.filter-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start; /* Links ausrichten statt zentriert */
    padding-left: 10px; /* Kleiner Abstand vom linken Rand */
}

.custom-filter-dropdown {
    position: relative;
    width: 300px; /* Breite auf 300px gesetzt */
}

.custom-filter-dropdown .dropdown-selected {
    padding: 8px 12px;
    background: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    justify-content: space-between;
}

.custom-filter-dropdown .dropdown-arrow {
    font-size: 12px;
    color: #e0e0e0;
}

.custom-filter-dropdown .dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.custom-filter-dropdown .dropdown-option {
    padding: 8px 12px;
    font-size: 16px;
    color: #e0e0e0;
    cursor: pointer;
}

.custom-filter-dropdown .dropdown-option:hover {
    background: #333;
}

.custom-filter-dropdown:hover .dropdown-options {
    display: block;
}
/* Styling für token-list-wrapper, um den Tip-Button zu positionieren */
.token-list-wrapper {
    background: linear-gradient(149deg, rgb(36,49,47) 0%, rgba(30,30,30,1) 53%);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    flex: 1;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative; /* Für absolute Positionierung des Tip-Buttons */
}

.token-list-wrapper h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00FF00;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Tip Button Styling */
.tip-button {
    padding: 8px 12px;
    background: linear-gradient(149deg, #00b300, #008000);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 179, 0, 0.7);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    display: none; /* Standardmäßig ausgeblendet */
    position: absolute;
    top: 10px;
    right: 10px;
}

.tip-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.9);
}

/* Tip Popup Styling */
.tip-popup {
    display: none;
    position: absolute;
    z-index: 1000;
}

.tip-popup.active {
    display: block;
}

/* Overlay für Desktop */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
    z-index: 999;
}

/* Popup-Inhalt */
.tip-content {
    position: absolute;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 300px;
    z-index: 1000;
}

.tip-content {
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

.wallet-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e1e1e;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    word-break: break-all;
}

.copy-icon {
    cursor: pointer;
    color: #00FF00;
    font-size: 16px;
    margin-left: 10px;
}

.copy-icon:hover {
    color: #78F8EC;
}

.tip-description {
    font-size: 12px;
    color: #b0b0b0;
    line-height: 1.4;
}

/* Desktop: Tip-Button und Popup sichtbar */
@media (min-width: 1200px) {
    .tip-button {
        display: block; /* Sichtbar auf Desktop */
    }

    .tip-popup.active {
        display: block;
    }

    .tip-content {
        top: 50px; /* Unterhalb des Buttons */
        right: 10px; /* Rechtsbündig mit dem Button */
        transform: none;
    }
}

/* Mobile: Tip-Button und Popup ausblenden */
@media (max-width: 1199px) {
    .tip-button {
        display: none !important; /* Auf Mobilgeräten ausblenden */
    }

    .tip-popup {
        display: none !important; /* Auf Mobilgeräten ausblenden */
    }
}

@media (max-width: 1199px) {
    .main-content {
        flex-direction: column;
        padding: 10px;
        position: static;
        top: 0;
        height: auto;
        width: 100%;
        max-width: 600px; /* Breite auf 600px für mobil */
        margin: 0 auto; /* Zentriert den Inhalt horizontal */
    }
    .column {
        min-width: 100%;
        overflow-y: auto; /* Standardmäßig scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .column::-webkit-scrollbar {
        display: none;
    }
    /* Reihenfolge der Spalten */
    .info-column {
        order: 1; /* Erste Spalte */
        max-height: none; /* Keine Höhenbeschränkung */
        overflow-y: visible; /* Kein Scrollen */
    }
    .transaction-column {
        order: 2; /* Zweite Spalte */
        max-height: 500px; /* Maximale Höhe von 500px */
    }
    .token-column {
        order: 3; /* Dritte Spalte */
        max-height: 500px; /* Maximale Höhe von 500px */
    }
    .transactions-box, .token-list-wrapper {
        max-height: 500px; /* Maximale Höhe für die Inhalte */
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .transactions-box::-webkit-scrollbar, .token-list-wrapper::-webkit-scrollbar {
        display: none;
    }
    .info-column {
        overflow-y: visible; /* Kein Scrollen für Info Column */
    }
    .dial-charts-row, .boxes-row {
        flex-direction: column;
    }
    .dial-box-container, .box {
        width: 100%;
    }
    #transactionChart {
        height: 150px;
    }
    .navbar-content {
        flex-direction: row;
        align-items: center;
        padding: 10px 20px;
        position: relative;
    }
    .hamburger {
        display: block;
        font-size: 30px;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #121212;
        padding: 20px 0;
        gap: 20px;
        z-index: 1000;
        align-items: center;
        justify-content: center;
        margin: 0;
        transform: none;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li a {
        font-size: clamp(16px, 3vw, 24px);
        text-align: center;
        padding: 10px;
    }
    .chain-selector {
        margin-left: auto;
    }
    .chain-form {
        justify-content: flex-end;
    }
    .custom-filter-dropdown {
        width: 100%; /* Volle Breite auf Mobilgeräten */
        max-width: 300px;
    }
}