.part-summary {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    bottom: 0;
    width: 100%;
    gap: 0.5rem;
    height: 3rem;
    min-height: 3rem;
    padding: .5rem;
    z-index: 1;
}

.parts, .print {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    height: 50%;
    white-space: nowrap;
}

.print {
    opacity: 0.5;
}


body[dark-mode] .part-summary {
    background-color: #000000
}

body[light-mode] .part-summary {
    background-color: #ddd;
}