@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-image: repeating-linear-gradient(to right, #27242d 0%, rgb(0, 0, 0) 100%);
    color: #fff;
    text-align: center;
}

h2 {
    padding: 2%;
    font-weight: bolder;
    color: #2e26a3;
    background-image: -webkit-radial-gradient(closest-side, #2e26a3 0%, #a96fd9 98%, #903884 61%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3{

    margin-bottom: 2%;
}

h4{
    color:#41406d
}

#table-container {
    width: 65vw;
    border-radius: 10px;
    margin-top: 20px;
}

table {
    font-size: 1em;
    color: #fff;
}

tr:hover {
    background-color: #cf82e248;
}

th, td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #555;
    color: #fff;
}

#chart-container {
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.selected-row {
    background-color: #cf82e2;
    color: #fff;
}
