
/* その他のUI値表示用クラス */
.age-value {
    font-weight: bold; 
    color: #ff99ff; 
    margin-left: 5px;
}

/* 追加: 死亡率終点ラベルのスタイル 
.mortality-endpoint-label {
    position: absolute;
    color: #fff !important;
    background: rgba(255, 0, 0, 0.7) !important;
    padding: 5px 10px !important;
    border-radius: 5px;
    font-size: 16px !important; 
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%); 
}
#endpoint-mortality-label {
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    font-size: 1.1em;
    padding: 5px 10px;
}

/* 死亡率終点ラベル 
#mortality-endpoint-label {
    color: #ff0000;
    background: rgba(0, 0, 0, 0.8);
    font-size: 1.1em;
    padding: 5px 10px;
}
*/

/* カラーレジェンドのスタイル */
#color-legend-container {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #555;
}

#color-bar {
    height: 15px;
    width: 100%;
    background: linear-gradient(to right, #00ff00, #ffff00, #ff0000);
    border-radius: 3px;
}

#color-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
}
