.coin-tracker {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .coin-item-link {
            text-decoration: none;
        }

        .coin-item {
         display: flex;
         align-items: center;
         margin: -9px 0;
         background: #1e1e1e;
         border-radius: 8px;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
         padding: 10px;
         justify-content: space-between;
	     color: white;
        }

        .coin-logo {
            width: 30px;
            height: 30px;
            margin-right: 20px;
        }

        .coin-name {
            flex: 1;
            font-size: 18px;
            font-weight: 600;
            margin-right: 10px;
	        color: white;
	    }

        .coin-price {
            font-weight: bold;
            margin-left: 10px;
            font-size: 16px;
        }

        .coin-price-change {
            font-size: 14px;
            font-weight: 600;
        }

        .price-change.up {
            color: green;
        }

        .price-change.down {
            color: red;
        }

        .coin-item:hover {
            background: #333;
            cursor: pointer;
        }

        .coin-item:active {
            transform: scale(0.98);
            transition: all 0.2s ease;
        }

        /* Custom Snake Line */
        .coin-change-snake {
            position: relative;
            width: 50px;
            height: 50px;
            margin-left: 10px;
        }

        .snake-line {
            width: 100%;
            height: 100%;
            transform: scaleX(1);
        }

        .snake-path {
            fill: none;
            stroke:  #1E90FF;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.5s ease;
        }

        .snake-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            transition: transform 0.5s ease;
        }
        