@charset "UTF-8";
/* CSS Document */

.row {
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    /* Center cells within the row */
    align-items: center;
    cursor: pointer;
    /*padding: 0.5vw;*/
    
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    
    padding-right: 0.5vw;
    padding-left: 0.5vw;
    
    margin-left: auto;
    margin-right: auto;
    
    /* distance all around the row and its cells */
    gap: 0.5vw;
    /* Space between cells */
    /*border: 0.25vw solid black;*/
    margin-bottom: 0.5vw;
    /* distance between rows */
    /*background-color: red;*/
}

.row:first-child {
    /*margin-top: 1vw;*/
}

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

.row.selected {
    border: 1vw solid blue;
}
