.crypto-price-wrapper {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.crypto-price-wrapper h3 {
    margin-top: 0;
    color: #9b59b6;
    border-bottom: 2px solid #9b59b6;
    padding-bottom: 10px;
}

.crypto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.crypto-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crypto-symbol {
    font-size: 18px;
    font-weight: bold;
    color: #9b59b6;
    min-width: 50px;
}

.crypto-name {
    color: #666;
    font-size: 14px;
}

.crypto-data {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crypto-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.crypto-change {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.crypto-change.up {
    background: #d4edda;
    color: #27ae60;
}

.crypto-change.up::before {
    content: '▲ ';
}

.crypto-change.down {
    background: #f8d7da;
    color: #e74c3c;
}

.crypto-change.down::before {
    content: '▼ ';
}

.crypto-price-table-wrapper {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.crypto-price-table {
    width: 100%;
    border-collapse: collapse;
}

.crypto-price-table th {
    background: #9b59b6;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.crypto-price-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.crypto-price-table tr:hover {
    background: #f8f9fa;
}

.crypto-price-table small {
    color: #999;
    font-size: 12px;
}

.crypto-price-table .up {
    color: #27ae60;
    font-weight: bold;
}

.crypto-price-table .down {
    color: #e74c3c;
    font-weight: bold;
}

.update-time {
    text-align: right;
    color: #999;
    font-size: 12px;
    margin-top: 15px;
    font-style: italic;
}

.btc-price {
    font-weight: bold;
    color: #9b59b6;
}

.btc-price .up {
    color: #27ae60;
    font-size: 12px;
}

.btc-price .down {
    color: #e74c3c;
    font-size: 12px;
}
