.market-ticker-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.market-ticker-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.market-ticker-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.market-ticker-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.market-ticker-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.market-ticker-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.market-ticker-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.market-ticker-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.market-ticker-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.market-ticker-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.market-ticker-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
}

.market-ticker-price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.market-ticker-change {
    font-size: 12px;
}

.market-ticker-change.up {
    color: #0ecb81;
}

.market-ticker-change.down {
    color: #f6465d;
}

.market-ticker-favorite {
    margin-left: 10px;
}

.favorite-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ffc107;
    padding: 0;
    line-height: 1;
}

.favorite-btn.add-favorite {
    opacity: 0.5;
}

.favorite-btn.add-favorite:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .market-ticker-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .market-ticker-items {
        grid-template-columns: 1fr;
    }
}