/* static/css/panel.css */

.panel-rows {
    display: grid;
    gap: 1rem;
}

.panel-row {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem;
    background: #fff;
}

.panel-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.panel-separator {
    grid-column: 1 / -1;   /* span full width of the grid */
    height: 0.25rem;       /* gap */
     /*border-bottom: 1px solid #e6e6e6; !* optional *! */
    margin-bottom: 0.25rem;
}
