.scs-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.scs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.scs-user-info {
    background: #f5f5f5;
    padding: 10px 20px;
    border-radius: 8px;
}

.scs-status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.scs-status-cards .card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.scs-status-cards .card .label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.scs-status-cards .card .value {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.trend-bullish { color: #00c853; }
.trend-bearish { color: #d32f2f; }
.trend-neutral { color: #ffa000; }

.scs-predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.prediction-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.prediction-card:hover {
    transform: translateY(-5px);
}

.prediction-card .asset {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.prediction-card .direction {
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.direction-LONG { background: #e8f5e9; color: #00c853; }
.direction-SHORT { background: #ffebee; color: #d32f2f; }

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-bar .progress {
    background: #2196f3;
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s;
}

.prediction-card .prices {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}

.signals-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.signals-table th {
    background: #f5f5f5;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.signals-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.signal-LONG .direction {
    color: #00c853;
    font-weight: bold;
}

.signal-SHORT .direction {
    color: #d32f2f;
    font-weight: bold;
}

.confidence-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 6px;
    width: 80px;
    overflow: hidden;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.confidence-bar span {
    display: block;
    height: 100%;
    background: #2196f3;
    border-radius: 10px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-active {
    background: #e8f5e9;
    color: #00c853;
}

.status-inactive {
    background: #ffebee;
    color: #d32f2f;
}

@media (max-width: 768px) {
    .scs-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .scs-status-cards,
    .scs-predictions-grid {
        grid-template-columns: 1fr;
    }
    
    .signals-table {
        font-size: 12px;
    }
    
    .signals-table th,
    .signals-table td {
        padding: 8px;
    }
}