.uae-tool .sampling {
    display: flex;
    gap: 2rem;
    border-radius: 6px;
    border: 1px dashed #ccc;
    padding: 1rem;
    overflow-x: auto;
    width: 100%;
}

.uae-tool .sampling .row.header {
    margin: 1rem auto;
    background-color: cornflowerblue;
    border-radius: 10px;
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
}

.uae-tool .sampling .row.header>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.uae-tool .sampling img {
    width: 30px;
}

.uae-tool .sampling .column {
    flex: 1;
}

.uae-tool .sampling .row {
    display: grid;
    grid-template-columns: 4rem auto;
    column-gap: 15px;
}

.uae-tool .sampling .row>div {
    white-space: wrap;
    text-align: right;
}

.uae-tool .sampling .row:not(.header):not(:last-child) {
    border-bottom: 1px solid #c2c2c2dd;
    padding: 5px 0;
}

.uae-tool .sampling .row.time {
    font-size: smaller;
    font-style: italic;
}

@media only screen and (max-width: 480px) {
    .uae-tool .sampling {
        display: block;
    }
}