#finishView .toolbar {
    grid-template-columns: auto 1fr auto;
}

.finish-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.finish-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.finish-row-pause,
.finish-row-roundPause {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    opacity: .82;
}

.finish-image,
.finish-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background: #374151;
}

.finish-image {
    object-fit: cover;
}

.finish-placeholder,
.finish-small-icon {
    display: grid;
    place-items: center;
    color: #f9fafb;
}

.finish-small-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #374151;
}

.finish-small-icon::before,
.finish-placeholder::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.finish-placeholder::before {
    width: 36px;
    height: 36px;
    mask-image: url("../icons/exercise.svg");
    -webkit-mask-image: url("../icons/exercise.svg");
}

.finish-small-icon-pause::before,
.finish-small-icon-roundPause::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='5' width='3.5' height='14' rx='1' fill='black'/%3E%3Crect x='13.5' y='5' width='3.5' height='14' rx='1' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='5' width='3.5' height='14' rx='1' fill='black'/%3E%3Crect x='13.5' y='5' width='3.5' height='14' rx='1' fill='black'/%3E%3C/svg%3E");
}

.finish-title {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    color: #f9fafb;
    line-height: 1.15;
}

.finish-meta {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #cbd5e1;
}

.finish-time {
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    color: #dbeafe;
    white-space: nowrap;
}