.body {
    margin: 0px; padding: 0px;
}
* {
    margin: 0px; padding: 0px;
}
.Flow_Score {
    padding: 15px; 
    background: #1a1f3a; 
    border: 1px solid #2a3458; 
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
.Flow_Score:hover {
    border: 1px solid #3b82f6;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}
.Flow_Score_Top {
    display:flex; 
    justify-content:space-between; 
    align-items:center; 
    margin-bottom:5px;
}
.Flow_Score_Top_Left {
    padding-left: 10px;
}
.Flow_Score_Top_Right {
    display:flex; 
    gap:16px; 
    font-size:11px; 
    font-weight:700;
    padding-right: 10px;
}
.Flow_Score_Chart {
    position:relative; 
    height:120px; 
    background: #040b1b; 
    border: 1px solid #2a3458; 
    border-radius: 4px; 
    cursor:grab;
}