.svg-container {
    position: relative;
    /* width: 100%; */
    /* adjust based on your layout */
    /* max-width: 1000px; */
    /* optional constraint */
    margin: 10px 10px;
}

#svgObj {
    width: 90%;
    height: 100vh;
    /* display: block; */
    z-index: 1;
}

.dataShowing {
    position: absolute;
    width: 295px;
    height: 400px;
    top: 2%;
    left: 79%;
    background-color: #fffbea;
    /* softer yellow */
    padding: 15px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 10;
    font-family: 'Roboto', sans-serif;
    overflow-y: auto;
}


/* Style the table inside */

.dataShowing table {
    width: 100%;
    border-collapse: collapse;
}

.dataShowing td {
    padding: 6px 8px;
    font-size: 20px;
    vertical-align: top;
    border-bottom: 1px solid #e0e0e0;
}

.dataShowing tr:last-child td {
    border-bottom: none;
}

.dataShowing td:first-child {
    font-weight: bold;
    color: #333;
    width: 50%;
}

.dataShowing td:last-child {
    text-align: right;
    color: #555;
}


/* Table 2.0 */

.plot-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
    font-size: 14px;
}

.plot-table th,
.plot-table td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: center;
}

.plot-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

.plot-table tr:nth-child(even) {
    background-color: #fafafa;
}

.plot-table tr:hover {
    background-color: #e9f5e9;
}

.plot-table {
    display: none;
}