/* Trading Dashboard Frontend Styles - Clean and Professional */
.trading-dashboard-public {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 2rem;
}

.dashboard-header {
    background: none;
    color: #1e293b;
    padding: 3rem 2rem 1rem 2rem;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.admin-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.admin-panel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.currency-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.currency-display-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: none;
    overflow: hidden;
    transition: none;
    position: relative;
    align-self: end;
}

.currency-display-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.currency-display-card:hover {
    transform: none;
    box-shadow: none;
}

.currency-display-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.currency-display-title {
    text-align: center;
    margin-bottom: 1rem;
}

.currency-display-code {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.025em;
}

.currency-display-name {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.currency-display-strength {
    text-align: center;
}

.strength-display-badge {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 2px solid;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.strength-strong {
    color: #059669;
    border-color: #059669;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.strength-weak {
    color: #dc2626;
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.strength-neutral {
    color: #6b7280;
    border-color: #6b7280;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25);
}

.indicators-display {
    padding: 2rem;
}

.indicator-display-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.indicator-display-item:last-child {
    margin-bottom: 0;
}

.indicator-display-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(4px);
}

.indicator-display-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    flex: 1;
    line-height: 1.5;
}

.indicator-display-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.no-data-message {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
}

.no-data-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.no-data-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0 0.5rem 0;
}

.no-data-content p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 1.5rem 0;
}

.setup-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.setup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 3rem 1rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .dashboard-subtitle {
        font-size: 1rem;
    }
    
    .currency-grid {
        padding: 1rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .currency-display-header {
        padding: 1.5rem;
    }
    
    .currency-display-code {
        font-size: 2rem;
    }
    
    .indicators-display {
        padding: 1.5rem;
    }
    
    .indicator-display-item {
        padding: 0.875rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .indicator-display-icon {
        align-self: flex-end;
    }
    
    .no-data-content {
        padding: 2rem 1rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .currency-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .currency-display-card {
        border-radius: 0.75rem;
    }
    
    .indicator-display-name {
        font-size: 0.8rem;
    }
}