/* Action-item document uploads */
.dropzone-zone {
  display: block;
  width: 100%;
  margin-bottom: 0;
  border: 2px dashed #dbe0e4;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  color: #637480;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.dropzone-zone:hover {
  border-color: #637480;
}

.dropzone-browse {
  color: #1d4c7e;
  text-decoration: underline;
  font-weight: 700;
}

.dropzone-hint {
  font-size: 12px;
  color: #9898a5;
}

.dropzone-dragover {
  border-color: #1d4c7e;
  background-color: #eef3f9;
  color: #1d4c7e;
}

.dropzone-progress-row {
  margin-top: 0.5rem;
}

.dropzone-filename {
  font-size: 0.8rem;
  color: #495057;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kr-file-rows {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kr-file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid #e5e8eb;
  border-radius: 8px;
  margin-bottom: 8px;
}

.kr-file-icon {
  color: #1d4c7e;
  font-size: 20px;
}

.kr-file-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  color: #3c3c3c;
}

.kr-file-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.kr-file-actions .kr-icon-button {
  color: #637480;
}

.kr-file-actions .kr-icon-button:hover {
  color: #1d4c7e;
}
