.p-10 {
  padding: 10px;
}

.container {
  overflow: auto;
}

.mulish {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.hidden {
  display: none;
}

.data-table {
  width: 1500px;
}
.data-table .data-row {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.data-table .data-row .data-header {
  display: inline-block;
  width: 9%;
  font-weight: bold;
  text-align: center;
}
.data-table .data-row .data-month {
  display: inline-block;
  background-color: white;
  width: 9%;
  font-weight: bold;
  padding-left: 10px;
  cursor: pointer;
}
.data-table .data-row .fixed {
  position: sticky;
  left: 0px;
}
.data-table .data-row .data-value {
  display: inline-block;
  width: 9%;
  text-align: center;
}

.dropdown-container {
  position: relative;
  display: inline-block;
  width: 250px;
  font-size: 15px;
  margin-bottom: 15px;
}
.dropdown-container .dropdown-list {
  position: absolute;
  width: 100%;
  padding: 0;
  margin-top: 0px;
  list-style: none;
  z-index: 999;
  animation-name: HideList;
  animation-duration: 0.6s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: step-start;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.231372549);
  max-height: 12rem;
  transition: ease-in all 0.3s;
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 0;
}
.dropdown-container .dropdown-option {
  width: 100%;
  display: block;
  padding: 10px;
  transition: all ease 0.3s;
  background-color: #ffffff;
  color: #6b6b6b;
}
.dropdown-container .dropdown-option:hover, .dropdown-container .dropdown-option:focus {
  color: #318825;
}
.dropdown-container .dropdown-active {
  background-color: #f3f3f3 !important;
  color: #1dad00;
}
.dropdown-container .dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: all ease-in 0.2s;
}
.dropdown-container .dropdown-value {
  display: flex;
}
.dropdown-container .dropdown-input {
  display: none !important;
}
.dropdown-container .dropdown-input:checked + .dropdown-value-text {
  display: block;
}
.dropdown-container .dropdown-current {
  position: relative;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1098039216);
  cursor: pointer;
  border-radius: 8px;
  outline: none;
}
.dropdown-container .dropdown-current:focus + .dropdown-list {
  opacity: 1;
  animation-name: none;
  pointer-events: all;
}
.dropdown-container .dropdown-current:focus + .dropdown-list .dropdown-option {
  cursor: pointer;
}
.dropdown-container .dropdown-current:focus .dropdown-caret {
  transform: translateY(-50%) rotate(180deg);
}
.dropdown-container .dropdown-value-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 10px;
}

@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
button {
  padding: 10px 20px;
  border-radius: 8px;
  outline: none;
  border: none;
  background-color: white;
  transition: all 0.4s ease;
  font-size: 17px;
  box-shadow: 0 4px 8px 0 rgba(15, 15, 15, 0.1764705882);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
button svg {
  margin-right: 10px;
}
button:hover {
  background-color: #f7f7f7;
}

.login-form {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.login-form .login-content {
  padding: 20px;
  text-align: center;
}
.login-form .login-content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-form button {
  margin-top: 20px;
}
.login-form .error {
  color: #c91212 !important;
}

.input-field {
  margin-top: 20px;
  text-align: left;
}
.input-field label {
  font-weight: bold;
}
.input-field input {
  padding: 8px 10px;
  box-shadow: 0 3px 4px 0 rgba(61, 61, 61, 0.1725490196);
  border: none;
  outline: none;
  font-size: 17px;
  width: 100%;
  margin-bottom: 10px;
}

.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 80%;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .links-list {
    width: auto;
  }
}
.links-list li {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.links-list li .link-name {
  align-items: center;
}
.links-list li .link-name p {
  margin: 0;
}
.links-list li .link-name .used {
  display: inline-block;
  padding: 5px;
  font-size: 14px;
  color: #1dad00;
  border: 1px solid #1dad00;
  border-radius: 4px;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .links-list li .link-name .used {
    margin-top: 10px;
    margin-left: 0px;
  }
}
.links-list li .link-name .details {
  margin-top: 10px;
}
.links-list li .link-name .details span {
  padding-left: 10px;
  padding-right: 10px;
  border-left: 1px solid #d6d6d6;
}
.links-list li .link-name div {
  display: flex;
}
@media (max-width: 768px) {
  .links-list li .link-name {
    display: block;
    font-size: 15px;
  }
}
.links-list li .list-btn {
  display: flex;
  margin-left: auto;
  cursor: pointer;
}
.links-list li .list-btn .sbtn {
  transition: all 0.3s ease;
  margin-right: 10px;
}
.links-list li .list-btn .copy:hover {
  color: #0f41e4;
}
.links-list li .list-btn .share:hover {
  color: #11b302;
}
.links-list li .list-btn .remove {
  margin-right: 0px;
}
.links-list li .list-btn .remove:hover {
  color: #e60000;
}
.links-list li:last-child {
  border: none;
}

.admin-buttons {
  display: flex;
}
.admin-buttons .logout {
  margin-left: 20px;
  background-color: #faadad;
}

.admin {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.detail-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 3, 3, 0.137254902);
  animation: fadeIn 0.4s forwards;
  z-index: 2;
  user-select: none;
}
.detail-background .detail-body {
  width: 550px;
  height: 100vh;
  padding: 15px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2588235294);
  display: flex;
  flex-direction: column;
  user-select: auto;
}
@media (max-width: 768px) {
  .detail-background .detail-body {
    width: 100vw;
  }
}
.detail-background .detail-body .details-header {
  display: flex;
  align-items: center;
}
.detail-background .detail-body .detail-close {
  margin-left: auto;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: black;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: none;
}
.detail-background .detail-body .detail-close svg {
  margin: 0;
}
.detail-background .detail-body .detail-close:hover {
  background-color: #f1f1f1;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 3, 3, 0.137254902);
  animation: fadeIn 0.4s forwards;
  z-index: 2;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  width: 550px;
  padding: 15px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2588235294);
  user-select: auto;
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 100vw;
  }
}
.modal .modal-content .modal-header {
  display: flex;
  align-items: center;
}
.modal .modal-content .modal-close {
  margin-left: auto;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: black;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: none;
}
.modal .modal-content .modal-close svg {
  margin: 0;
}
.modal .modal-content .modal-close:hover {
  background-color: #f1f1f1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tooltip {
  position: relative;
  cursor: pointer;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  font-size: 13px;
  background-color: rgba(43, 43, 43, 0.5254901961);
  color: white;
  width: auto;
  max-width: 200px;
  bottom: -50%;
  transform: translate(0%, 0%);
  box-shadow: 0 2px 4px 0 rgba(36, 36, 36, 0.1019607843);
  transform-origin: center;
  text-align: center;
  border-radius: 5px;
  pointer-events: none;
  user-select: none;
  padding: 5px;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}
.tooltip:hover::after {
  transform: translate(0%, 50%);
  opacity: 1;
}

.data-month-details {
  overflow: auto;
  width: 100%;
}
.data-month-details .data-item {
  width: 600px;
}
.data-month-details .detail-name {
  display: inline-block;
  width: 70%;
  box-sizing: border-box;
  padding-left: 10px;
}
.data-month-details .detail-value {
  display: inline-block;
  width: 30%;
  text-align: right;
}
.data-month-details .detail-total {
  font-weight: bold;
  margin: 20px 0;
  width: 600px;
}

.page-close {
  margin-left: auto;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: black;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: none;
}
.page-close svg {
  margin: 0;
}
.page-close:hover {
  background-color: #f1f1f1;
}

.tab {
  cursor: pointer;
}
.tab span {
  transition: all 0.4s ease;
  padding: 8px 10px;
  border-bottom: 2px solid white;
}
.tab span:hover {
  color: #0f6eeb;
  border-color: #0f6eeb;
}
.tab .selected {
  color: #0f41e4;
  border-color: #003ad8;
}

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