section#tech-info #chart-container {
    width: 550px;
    margin: 10px auto;
    padding: 20px 70px 20px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

section#tech-info #tech-comparison-container {
    display: flex; 
    justify-content: center;
    align-items: center;
}

#tech-value-prop {
    display: flex;
    justify-content: center; /* Centers the list horizontally on the page */
    width: 100%;
    margin: 20px 0;
}

#tech-value-prop ul {
    display: flex;
    flex-direction: row;     /* Displays list items side by side */
    gap: 20px;               /* 20px space between items */
    list-style: none;        /* Removes default bullets */
    padding: 0;
    margin: 0;
}

#tech-value-prop li {
    color: #e67e22;
    font-weight: 600;
    font-size: 16pt;
    white-space: nowrap;     /* Prevents items from breaking onto multiple lines */
}
