/**
 * Personality Report Color Fix - Inline Styles
 * This ensures color coding works properly
 */

/* Force color coding for accuracy values */
.accuracy-value.high,
.accuracy-value[class*="high"] {
    background: linear-gradient(45deg, #00ff88, #00cc66) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6) !important;
}

.accuracy-value.medium,
.accuracy-value[class*="medium"] {
    background: linear-gradient(45deg, #ffaa00, #ff8800) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.6) !important;
}

.accuracy-value.low,
.accuracy-value[class*="low"] {
    background: linear-gradient(45deg, #ff4444, #cc2222) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6) !important;
}

/* Force color coding for meter fills */
.meter-fill.high,
.meter-fill[class*="high"] {
    background: linear-gradient(90deg, #00ff88, #00cc66) !important;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8) !important;
}

.meter-fill.medium,
.meter-fill[class*="medium"] {
    background: linear-gradient(90deg, #ffaa00, #ff8800) !important;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.8) !important;
}

.meter-fill.low,
.meter-fill[class*="low"] {
    background: linear-gradient(90deg, #ff4444, #cc2222) !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.8) !important;
}

/* Force gradient text for personality names */
.report-info h2 {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 2.5rem !important;
    margin-bottom: 10px !important;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5) !important;
}

/* Force section headers styling */
.report-section h3 {
    background: linear-gradient(45deg, #ff00ff, #00ffff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 1.8rem !important;
    text-align: center !important;
    margin-bottom: 25px !important;
}

/* Force avatar styling */
.report-avatar {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    border: 4px solid !important;
    border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff) 1 !important;
    object-fit: cover !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.2) !important;
}

/* Force modal background */
#poc-report-modal {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
}

#poc-report-modal .modal-content {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid !important;
    border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff) 1 !important;
    border-radius: 20px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 
        0 0 50px rgba(255, 0, 255, 0.3),
        inset 0 0 50px rgba(0, 255, 255, 0.1) !important;
}

/* Force parameter card styling */
.parameter-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 0, 255, 0.3) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    backdrop-filter: blur(10px) !important;
}

.parameter-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff) !important;
    opacity: 0.8 !important;
}

/* Force meter styling */
.meter {
    width: 120px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.meter-fill {
    height: 100% !important;
    border-radius: 10px !important;
    transition: width 1s ease-out !important;
}
