form .input-wrapper .icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #cac4d0;
}
form button {
  width: 100%;
  padding: 10px 24px;
  background: rgba(230, 224, 233, 0.1215686275);
  border: none;
  color: #e6e0e9;
  border-radius: 100px;
  cursor: pointer;
}
form button:hover {
  background: #d0bcff;
  color: #543a98;
}

.list {
  display: flex;
  flex-direction: column;
  padding: 0;
  color: #cac4d0;
}
.list > *:not(:last-child) {
  border-bottom: 1px solid rgba(201, 201, 201, 0.1254901961);
  padding: 12px 0;
}
.list > *:last-child {
  padding-top: 12px;
}
.list .item {
  display: flex;
  justify-content: space-between;
}
.list .item .title {
  font-size: 14px;
  font-weight: 700;
}
.list .item.completed .name {
  color: #c7f9cc;
}
.list .count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
  width: 100px;
}
.list .count .count-content {
  display: flex;
  gap: 8px;
}

.dialog-title {
  font-weight: 700;
  font-size: 18px;
}

.dialog-article-name {
  font-size: 14px;
  color: #d0bcff;
}

.dialog-body .location-count {
  border-bottom: 1px solid #36343b;
  padding-block: 4px;
  margin-block: 8px;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/material-icons.woff2) format("woff2");
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/material-icons-outlined.woff2) format("woff2");
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/material-symbols-outlined.woff2) format("woff2");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.material-icons-outlined {
  font-family: "Material Icons Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.header {
  border-bottom: 2px solid rgba(201, 201, 201, 0.1254901961);
  padding-bottom: 8px;
}
.header .title {
  font-size: 15px;
  font-weight: 700;
}

.location-count {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.state {
  font-size: 10px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 25px;
  width: 90px;
}
.state.pending {
  background-color: #495057;
}
.state.inprogress {
  background-color: #2f59eb;
  color: #e6e0e9;
}

.completed {
  color: #19A95F;
}

.in-progress {
  color: #d0bcff;
}

.arrow-left.icon {
  user-select: none;
  cursor: pointer;
}

.text-lavender {
  color: #d0bcff;
}

.text-mint {
  color: #c7f9cc;
}

.errors-list-item:not(:last-child) {
  margin-bottom: 8px;
  border-bottom: 1px solid #36343b;
}

.filled-btn, .outline-btn {
  padding: 10px 24px;
  border-radius: 24px;
  cursor: pointer;
}

.outline-btn {
  background-color: #211f26;
  color: #d0bcff;
  border: 1px solid #d0bcff;
}

.filled-btn {
  background-color: #d0bcff;
  color: #211f26;
  border: none;
}

.full-width-btn {
  width: 100%;
}

html,
body {
  margin: 0;
  overflow: auto;
}

body {
  font-size: 15px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #e6e0e9;
  background: #1d1b20;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}
