#warning-prompt {
    position: sticky;
    top: 10px;
    border: 3px solid #f6464d;
    color: white;
    border-radius: 8px;
    padding: 0.01em 16px;
    background: #f6464d;
}

.line-graph {
    margin-left: 1rem;
    margin-right: 1rem;
}

#bottom-bar {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

#pid-data {
    margin-left: 1rem;
    margin-right: 1rem;
    width: 100%;
    border-collapse: collapse;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 4px;
    box-sizing: border-box;
}

p, th, td {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1, h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.graph-selector {
    display: flex;
}

.toggle-button {
    display: flex;
    padding: 10px 20px;
    border: none;
    background-color: #3333ff;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
}

.toggle-button:hover {
    background-color: #0000e6;
}

.toggle-button.selected {
    background-color: #0000b3;
}

.toggle-button:first-child {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.toggle-button:last-child {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}