.bulk-files-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 20px;
}


.bulk-files-row {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.bulk-files-row__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  margin-left: 25px;
}

.bulk-files-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bulk-files-row__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
}

.bulk-files-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bulk-files-row__icon-wrapper {
  width: 100%;
  height: 100%;
}

.bulk-files-row__icon-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bulk-files-row__filename {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  display: block;
  max-width: 100%;
  word-break: break-word; 
}

.bulk-files-row__actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}

.btn-yellow {
  background: linear-gradient(to bottom, #ffce00, #ffb000);
  padding: 10px 24px;
  color: #fff;
  font-weight: bold;
  border-radius: 9999px;
  text-decoration: none;
}

.bulk-files-row__actions {
  display: none;
}

.bulk-files-row__filename-prefix {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #424242;
  margin-right: 6px; 
}

@media (min-width: 768px) {
  .bulk-files-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* En mobile solo 1 columna */
@media (max-width: 767px) {
  .bulk-files-grid {
    grid-template-columns: 1fr;
  }
}
