/* Generated UUID result */
.uuid-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 14px;
}
.uuid-text {
  flex: 1;
  font-family: 'Consolas', 'D2Coding', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  word-break: break-all;
}
.btn-copy {
  background: #0078d4;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

/* Checkboxes */

.check-sample {
  color: #999;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  margin-left: auto;
}

/* Count */

/* Buttons */
.btn-generate {
  width: 100%;
  padding: 12px;
  background: #0078d4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-copy-all {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: #fff;
  color: #0078d4;
  border: 1px solid #0078d4;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-copy-all:hover { background: #0078d4; color: #fff; }

/* List */
#uuid-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.uuid-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px 12px;
}
.uuid-list-item .uuid-text {
  font-size: 13px;
}
.uuid-list-item .btn-copy {
  padding: 6px 12px;
  font-size: 12px;
}
