harshapitla/stackoverflow
0
1/* Tooltip container */2.recharts-tooltip-wrapper {3 z-index: 1000;4}5 6/* Tooltip box */7.recharts-default-tooltip {8 background-color: #ffffff !important; /* white */9 border: 1px solid #e5e7eb !important;10 border-radius: 8px;11 padding: 10px 12px;12 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);13}14 15/* Tooltip label (title) */16.recharts-tooltip-label {17 color: #0f172a !important; /* dark blue/black */18 font-weight: 600;19 margin-bottom: 6px;20}21 22/* Tooltip values */23.recharts-tooltip-item {24 color: #334155 !important; /* readable gray */25 font-size: 13px;26}27 