/* Burnout Risk Score Styles */
.bj-burnout-risk-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bj-burnout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bj-burnout-header h2 {
    margin: 0;
    color: #1e293b;
    font-size: 24px;
    font-weight: 600;
}

.bj-risk-indicator {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bj-risk-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bj-risk-indicator.low {
    background: #dcfce7;
    color: #15803d;
}

.bj-risk-indicator.low::before {
    background: #15803d;
}

.bj-risk-indicator.mild {
    background: #fef3c7;
    color: #b45309;
}

.bj-risk-indicator.mild::before {
    background: #b45309;
}

.bj-risk-indicator.high {
    background: #fee2e2;
    color: #b91c1c;
}

.bj-risk-indicator.high::before {
    background: #b91c1c;
}

.bj-risk-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.bj-stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.bj-stat-card h3 {
    margin: 0 0 16px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bj-stat-card .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.bj-stat-card .stat-value.warning {
    color: #dc2626;
}

.bj-stat-card .stat-label {
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
}

.bj-risk-factors {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.bj-risk-factors h3 {
    margin: 0 0 16px;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.bj-risk-factors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bj-risk-factors li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
}

.bj-risk-factors li:last-child {
    margin-bottom: 0;
}

.bj-risk-factors li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
}

.bj-risk-footer {
    margin-top: 32px;
}

.bj-info-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-radius: 8px;
    color: #475569;
    font-size: 14px;
}

.bj-info-note svg {
    width: 20px;
    height: 20px;
    color: #64748b;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bj-burnout-risk-wrapper {
        padding: 24px;
    }

    .bj-burnout-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bj-risk-stats {
        grid-template-columns: 1fr;
    }

    .bj-stat-card .stat-value {
        font-size: 28px;
    }
}

/* Admin Styles */
.bj-admin-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    color: #0369a1;
    font-size: 14px;
}

.bj-admin-info p {
    margin: 0;
}

.bj-error-notice {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #b91c1c;
    font-size: 14px;
} 