/**
 * SMART TRAINING METHOD SELECTOR STYLES
 * Visual styling for training method analysis display
 * NOTE: Dropdown uses standard .form-control styling
 */

/* Analysis message container - Dark terminal style with HIGH CONTRAST */
#trainingMethodAnalysis {
    display: block !important;
}

.training-method-analysis {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 2px solid #0f3460 !important;
    border-radius: 8px;
    padding: 15px 20px !important;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.training-method-analysis * {
    color: #ffffff !important;
}

.training-method-analysis .method-breakdown {
    margin-bottom: 12px;
    color: #ffffff !important;
    font-size: 14px;
}

.training-method-analysis .method-breakdown strong {
    color: #ffd700 !important;
    font-weight: 700;
}

.training-method-analysis .method-explanation {
    background: rgba(0, 150, 255, 0.2) !important;
    border-left: 3px solid #0096ff;
    padding: 10px 15px;
    margin-top: 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #e0e0e0 !important;
}

.training-method-analysis .method-explanation strong {
    color: #ffffff !important;
}

/* Loading state - blue gradient */
.training-method-analysis .loading {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
    border: none;
    text-align: center;
}

/* Error state - match GPU recommendation box */
.training-method-analysis .error {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    border: none;
}

/* Icons in text */
.training-method-analysis strong {
    font-weight: 600;
}

/* Success highlighting */
.training-method-analysis .recommended-badge {
    display: inline-block;
    background: #28a745;
    color: white !important;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 6px;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .training-method-analysis {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .training-method-analysis .method-explanation {
        font-size: 12px;
    }
}
