/* Market Data List */
.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
}

.market-item:last-child {
    border-bottom: none;
}

.market-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.symbol-info {
    display: flex;
    flex-direction: column;
}

.symbol-name {
    font-weight: 700;
    font-family: var(--font-mono);
}

.symbol-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.price-info {
    text-align: right;
    font-family: var(--font-mono);
}

.price-val {
    font-weight: 600;
}

.price-change {
    font-size: 0.875rem;
}

.price-change.up {
    color: var(--success-color);
}

.price-change.down {
    color: var(--danger-color);
}

/* News Feed */
.news-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.news-title {
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.875rem;
}

.news-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Chart Placeholder */
.placeholder-chart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    position: relative;
}

/* EA Card */
.ea-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.ea-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.ea-title {
    font-weight: 600;
}

.ea-version {
    font-size: 0.75rem;
    background: var(--primary-color);
    color: white;
    padding: 2px 6px;
    border-radius: 99px;
}

.ea-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.error-text {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
}