.progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.step {
  display: flex;
  align-items: center;
}

.step-box {
  padding: 5px 40px;
  background: #fff;
  border-radius: 8px;
  font-weight: 300;
  cursor: pointer;
  border: 1px solid #ccc;
  user-select: none;
}

.step-box.active {
  font-weight: 900;
}

.step-box.completed {
  background: #eae26b;
  font-weight: bold;
}

.line {
  height: 1px;
  background: #000;
  width: 100%;
}

.dashboard {
  margin-right: 30px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.table-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.csv-wrapper {
  display: inline;
  position: relative;
}

.csv-wrapper form {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
}

.csv-wrapper .value-row {
  opacity: 0;
}

.csv-wrapper form button,
.csv-wrapper form input[type=submit] {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
}

.button {
  width: auto;
  height: 35px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  background: #fff;
  color: #000;
}

.button.primary-btn {
  background: #e3e55f;
  color: #000;
  border: none;
  width: 120px;
}

.button.primary-btn:hover {
  background: #ebed8e;
}

.button.upload {
  border: 1px solid #000;
}

.button.upload:hover {
  background: #ebed8e;
}

.button.delete-all {
  border: 1px solid #e00;
  color: #e00;
}

.button.delete-all * {
  color: #e00;
}

.button.delete-all:hover {
  background: #ffeded;
}

.button.download-template {
  border: 1px solid #000;
}

.button.download-template:hover {
  background: #ebed8e;
}

.people-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #D3D3D3;
  font-size: 14px;
  font-family: Inter, sans-serif;
}

.people-table th,
.people-table td {
  padding: 10px 6px;
  border: 1px solid #D3D3D3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.people-table thead th {
  background: #f2ede9;
  font-weight: 600;
  text-align: left;
}

.people-table thead th.actions-cell,
.people-table thead {
  text-align: center;
  width: 40px;
}

th.save-cell {
  text-align: center !important;
  width: 70px;
}

.people-table td.actions-cell,
.people-table td.save-cell {
  text-align: center;
  cursor: pointer;
}

.row-highlight td {
  background: #FFFF99 !important;
  color: #000000 !important;
}

.add-row-button {
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #fff;
  user-select: none;
  margin-top: 24px;
}

#applyChangesBtn {
  display: none;
}

.hidden {
  display: none;
}

.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.pagination-controls .button {
  padding: 6px 12px;
  font-size: 14px;
}

.pagination-controls span {
  font-size: 14px;
}

.button.upload {
  position: relative;
  overflow: hidden;
}

.button.upload input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.contf:before {
  display: none;
}

.contf:after {
  display: none;
}

._success {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.0980392157);
  padding: 45px;
  width: 100%;
  text-align: center;
  margin: 40px auto;
  border-bottom: solid 4px #28a745;
}

._success i {
  font-size: 55px;
  color: #28a745;
}

._success h2 {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 10px;
}

._success p {
  margin-bottom: 0px;
  font-size: 18px;
  color: #495057;
  font-weight: 500;
}

/*# sourceMappingURL=App.css.map */
