@font-face {
  font-family: kalemeh;
  src: url(../fonts/kalameh.woff2);
}
@font-face {
  font-family: icon;
  src: url(../fonts/icon.woff2);
}
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: kalemeh;
}

i {
  font-style: normal;
}

body {
  background: #0f0f13;
  width: 100%;
}

#root {
  width: calc(100% - 2rem);
  max-width: 400px;
  margin: 0 auto;
}

.header {
  width: 100%;
  padding: 16px;
  border-radius: 0 0 8px 8px;
  text-align: center;
  background: #1c1c22;
}
.header h1 {
  color: #e8eaf0;
  font-size: 18px;
}

.main {
  width: 100%;
  padding: 16px;
  background: #1c1c22;
  margin-top: 24px;
  border-radius: 8px;
}

.main form {
  width: 100%;
  display: grid;
  gap: 16px;
}

.input_box {
  width: 100%;
  display: grid;
  gap: 8px;
}
.input_box span {
  color: rgba(255, 255, 255, 0.568627451);
  font-size: 13px;
}
.input_box input {
  width: 100%;
  background: #101014;
  border: transparent;
  height: 36px;
  border-radius: 8px;
  outline: none;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.568627451);
}

.up_btn {
  width: 100%;
  height: 36px;
  border-radius: 8px;
  outline: none;
  border: transparent;
  background: rgba(43, 43, 43, 0.8392156863);
  color: rgba(255, 255, 255, 0.568627451);
  font-size: 14px;
  cursor: pointer;
}

.ok_status {
  width: 100%;
  padding: 8px;
  color: #89d64f;
  background: rgba(137, 214, 79, 0.1490196078);
  border-radius: 8px;
  display: grid;
  gap: 8px;
}
.ok_status strong {
  font-size: 14px;
}
.ok_status span {
  font-size: 13px;
}
.ok_status p {
  font-size: 13px;
}

.uok_status {
  background: #fa697c;
  padding: 8px;
  border-radius: 8px;
  color: #e8eaf0;
}

.list__files {
  width: 100%;
  padding: 16px;
  background: #1c1c22;
  margin-top: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.empty_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.empty_list span {
  font-size: 80px;
  color: #e8eaf0;
}
.empty_list span::before {
  content: "\ea55";
  display: block;
  font-family: icon;
}
.empty_list p {
  color: #e8eaf0;
  font-size: 14px;
}

.list__files > ul {
  width: 100%;
  display: grid;
  gap: 16px;
}
.list__files > ul > li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list__files > ul > li > .right {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
}
.list__files > ul > li > .right i {
  color: #e8eaf0;
  font-size: 13px;
  font-style: normal;
}
.list__files > ul > li > .right i::before {
  content: "\ea55";
  display: block;
  font-family: icon;
}
.list__files > ul > li > .right span {
  font-size: 14px;
  color: #e8eaf0;
  font-weight: 600;
}

.list__files > ul > li > .left {
  width: fit-content;
  align-items: center;
  display: flex;
  gap: 8px;
}
.list__files > ul > li > .left button {
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: rgba(43, 43, 43, 0.84);
  border: transparent;
  border-radius: 8px;
}

.list__files > ul > li > .left > .btn_delete i {
  font-size: 18px;
  color: #e8eaf0;
}
.list__files > ul > li > .left > .btn_delete i::before {
  content: "\eaf0";
  font-family: icon;
}

.list__files > ul > li > .left > .btn_copy i {
  font-size: 18px;
  color: #e8eaf0;
}
.list__files > ul > li > .left > .btn_copy i::before {
  content: "\ea0f";
  font-family: icon;
}

.reset_btn {
  background: #fa697c;
}

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