* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  outline: none;
}
button {
  cursor: pointer;
  border: none;
  background: transparent;
}
body {
  background: #f4f4f4;
}
header {
  width: 100%;
  background: #fff;
  box-shadow: 1px 2px 4px 0px rgba(231, 231, 231, 1);
  padding: 0 20px;

  .top-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dcdcdc;
    padding: 20px 0;
    .top-header-left {
      display: flex;
      align-items: center;
      gap: 50px;
      .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 88px;
        min-width: 88px;
        img {
          width: 100%;
        }
      }
      .header-search {
        display: flex;
        align-items: center;
        width: 350px;
        gap: 14px;
        box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.02);
        background: #f0f0f0;
        border-radius: 100px;
        padding: 12px 10px;
        .searchBtn {
          width: 22px;
          height: 22px;
          min-width: 22px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
            height: 100%;
          }
        }
        input {
          width: 100%;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          color: #000;
          border: none;
          background: transparent;
          &::placeholder {
            color: rgba(6, 6, 6, 0.4);
          }
        }
      }
    }
    .top-header-right {
      display: flex;
      align-items: center;
      gap: 20px;
      .header-notification {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: start;
        width: max-content;
        .notification-btn {
          width: 48px;
          height: 48px;
          min-width: 48px;
          position: relative;
          border-radius: 100px;
          background: #0b58c9;
          img {
            width: 22px;
            height: 22px;
          }
          &::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 100px;
            background: #ff0000;
            top: 13px;
            right: 13px;
          }
        }
        .notification-list {
          display: flex;
          flex-direction: column;
          align-items: start;
          background: #fff;
          box-shadow: 3px 4px 10px 0px rgba(103, 102, 102, 0.4);
          position: absolute;
          right: 0;
          width: 280px;
          top: 64px;
          border-radius: 12px;
          max-height: 200px;
          overflow-y: auto;
          opacity: 0;
          visibility: hidden;
          transition: 0.35s ease-in-out;
          z-index: 2;
          .notification-item {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 6px;
            padding: 12px 14px 12px 8px;
            border-bottom: 1px solid #dadada;
            p {
              font-size: 14px;
              font-weight: 500;
              line-height: 18px;
              color: #202224;
            }
            span {
              font-size: 10px;
              font-weight: 400;
              line-height: 12px;
              color: #606060;
            }
            &:last-child {
              border-bottom: none;
            }
          }
        }
      }
      .header-notification.active {
        .notification-list {
          top: 54px;
          opacity: 1;
          visibility: visible;
        }
      }
      .header-user {
        display: flex;
        align-items: center;
        gap: 10px;
        .userImg {
          width: 38px;
          height: 38px;
          min-width: 38px;
          border-radius: 100px;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100px;
          }
        }
        .userBody {
          min-width: 100px;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 4px;
          p {
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            color: #292d32;
          }
          span {
            font-weight: 400;
            font-size: 12px;
            line-height: 14px;
            color: rgba(41, 45, 50, 0.44);
          }
        }
      }
      .header-settings {
        position: relative;
        .settings-btn {
          width: 24px;
          height: 24px;
          min-width: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
          }
        }
        .settings-links {
          position: absolute;
          right: 0;
          opacity: 0;
          visibility: hidden;
          z-index: 2;
          top: 50px;
          width: max-content;
          background: #fff;
          box-shadow: 1px 0px 4px 0px rgba(124, 124, 124, 0.25);
          border-radius: 16px;
          display: flex;
          flex-direction: column;
          align-items: start;
          min-width: 170px;
          transition: 0.3s ease-in-out;
          .linkItem {
            width: 100%;
            padding: 12px 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: #292d32;
            border-bottom: 1px solid #d8d9db;
            &:first-child {
              border-radius: 16px 16px 0 0;
            }
            &:last-child {
              border-bottom: none;
              border-radius: 0 0 16px 16px;
            }
          }
        }
      }
      .header-settings.active {
        .settings-links {
          opacity: 1;
          visibility: visible;
          top: 40px;
        }
      }
      .header-exit {
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
        }
      }
    }
  }
  nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    .nav-item {
      padding: 28px 0;
      position: relative;
      .nav-item-head {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        filter: brightness(0);
        opacity: 0.7;
        img {
          min-width: 20px;
          width: 20px;
        }
        p {
          font-weight: 400;
          font-size: 14px;
          line-height: 21px;
          color: #286ccf;
        }
        .downIcon {
          width: 12px;
          min-width: 12px;
        }
      }
      .nav-item-menu {
        position: absolute;
        left: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 2;
        top: 87px;
        width: max-content;
        background: #fff;
        box-shadow: 3px 3px 4px 0px rgba(124, 124, 124, 0.25);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: start;
        min-width: 170px;
        transition: 0.3s ease-in-out;
        .menuItem {
          width: 100%;
          padding: 12px 16px;
          font-weight: 400;
          font-size: 14px;
          line-height: 20px;
          color: #292d32;
          border-bottom: 1px solid #d8d9db;
          &:first-child {
            border-radius: 16px 16px 0 0;
          }
          &:last-child {
            border-bottom: none;
            border-radius: 0 0 16px 16px;
          }
        }
      }
      &:hover {
        .nav-item-menu {
          top: 77px;
          visibility: visible;
          opacity: 1;
        }
      }
      &:last-child {
        .nav-item-menu {
          right: 0;
          left: auto;
        }
      }
    }
    .nav-item.active {
      .nav-item-head {
        filter: none;
        opacity: 1;
      }
    }
  }
}
.page-head {
  width: 100%;
  padding: 0 20px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  .content {
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .goBack {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 400;
      font-size: 14px;
      line-height: 21px;
      color: #131527;
      margin-bottom: 12px;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
    }
    h1 {
      font-weight: 700;
      font-size: 28px;
      line-height: 34px;
      color: #060606;
    }
    p {
      margin-top: 4px;
      font-weight: 400;
      font-size: 14px;
      line-height: 24px;
      color: #87888c;
    }
  }
  .page-head-right {
    display: flex;
    align-items: center;
    gap: 20px;
    .dashboard-select {
      min-width: 120px;
      border-radius: 16px;
      background: #fff;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      color: #000;
      border: none;
      padding: 8px;
      text-align: center;
    }
    .search-form {
      display: flex;
      align-items: center;
      width: 300px;
      gap: 14px;
      box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.02);
      background: #fff;
      border-radius: 16px;
      padding: 10px 12px;
      .searchBtn {
        width: 22px;
        height: 22px;
        min-width: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
      input {
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #000;
        border: none;
        background: transparent;
        &::placeholder {
          color: rgba(6, 6, 6, 0.4);
        }
      }
    }
    .addNew,
    .addNewLink {
      padding: 10px 30px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #fff;
      background: #0b58c9;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: rgba(40, 174, 243, 0.88);
      }
    }
    .editLink {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-weight: 400;
      font-size: 12px;
      text-align: center;
      color: rgba(0, 0, 0, 0.6);
      .icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
    }
    .deleteBtn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-weight: 400;
      font-size: 12px;
      text-align: center;
      color: rgba(0, 0, 0, 0.6);
      .icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
    }
  }
}
.dashboard {
  width: 100%;
  padding: 20px 20px 30px;
  .dashboard-boxes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    .dashboard-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      box-shadow: 4px 3px 4px 0px rgba(201, 201, 201, 0.25);
      padding: 20px;
      border-radius: 20px;
      background: #fff;
      gap: 18px;
      .box-head {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        gap: 20px;
        .content {
          display: flex;
          flex-direction: column;
          align-items: start;
          h2 {
            font-weight: 700;
            font-size: 24px;
            line-height: 30px;
            color: #121212;
          }
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #7b7b7b;
          }
        }
        .icon {
          width: 50px;
          height: 50px;
          min-width: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          img {
            width: 24px;
            min-width: 24px;
          }
        }
      }
      .box-bottom {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: auto;
        img {
          min-width: 24px;
          width: 24px;
        }
        p {
          font-weight: 400;
          font-size: 12px;
          line-height: 20px;
          color: #515151;
        }
      }
      .target {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 4px;
        .target-title {
          font-weight: 400;
          font-size: 10px;
          line-height: 16px;
          color: #9d9d9d;
        }
        .progress-bar {
          width: 100%;
          height: 6px;
          border-radius: 20px;
          background: #d9d9d9;
          position: relative;
          .colored-area {
            position: absolute;
            z-index: 1;
            left: 0;
            top: 0;
            height: 100%;
            border-radius: 20px;
            background: #10a142;
          }
        }
        .target-bottom {
          display: flex;
          align-items: center;
          width: 100%;
          justify-content: space-between;
          p {
            font-weight: 600;
            font-size: 10px;
            line-height: 16px;
          }
          .current-price {
            color: #10a142;
          }
          .target-price {
            color: #7b7b7b;
          }
        }
      }
      &:nth-child(1) {
        .box-head {
          .icon {
            background: #fff4e8;
          }
        }
      }
      &:nth-child(2) {
        .box-head {
          .icon {
            background: #e8f5ff;
          }
        }
      }
      &:nth-child(3) {
        .box-head {
          .icon {
            background: #f9efff;
          }
        }
      }
      &:nth-child(4) {
        .box-head {
          .icon {
            background: #ecfff2;
          }
        }
      }
    }
  }
  .profit-activities {
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    gap: 20px;
    .chart-card {
      padding: 16px 20px 10px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 4px 3px 4px 0px rgba(201, 201, 201, 0.25);
      border: 1px solid #f0f0f0;
      .chart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        h2 {
          font-size: 20px;
          font-weight: 400;
          line-height: 32px;
          color: #060606;
        }

        .chart-controls {
          display: flex;
          align-items: center;
          gap: 20px;
          .legend {
            display: flex;
            gap: 14px;
            span {
              display: flex;
              align-items: center;
              gap: 8px;
              font-weight: 400;
              font-size: 12px;
              line-height: 18px;
              color: #2b2b36;
              .dot {
                width: 10px;
                height: 10px;
                border-radius: 100px;
                display: inline-block;

                &.dot-income {
                  background: #2348e5;
                }
                &.dot-expense {
                  background: #6ec2ff;
                }
              }
            }
          }

          select {
            padding: 8px 12px;
            background: #f4f8fa;
            border: none;
            border-radius: 100px;
            font-size: 16px;
            line-height: 24px;
            cursor: pointer;
          }
        }
      }

      canvas {
        margin-top: 34px;
      }
    }
    .activities {
      max-height: 400px;
      overflow-y: auto;
      background: #ffffff;
      border: 1px solid #f0f0f0;
      box-shadow: 4px 3px 4px 0px rgba(201, 201, 201, 0.25);
      border-radius: 20px;
      padding: 20px;
      padding-right: 10px;
      display: flex;
      flex-direction: column;
      align-items: start;
      .activities-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-right: 10px;
        h2 {
          font-weight: 400;
          font-size: 20px;
          line-height: 32px;
          color: #060606;
        }
        .total-note {
          font-weight: 400;
          font-size: 12px;
          line-height: 16px;
          color: #87888c;
        }
      }
      .activities-list {
        margin-top: 20px;
        max-height: 290px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 14px;
        padding-right: 10px;
        &::-webkit-scrollbar {
          width: 6px;
        }
        &::-webkit-scrollbar-track {
          background: #d6d6d6;
          border-radius: 12px;
        }
        &::-webkit-scrollbar-thumb {
          background: #0b58c9;
          border-radius: 12px;
        }
        .activity-item {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          padding-bottom: 14px;
          border-bottom: 0.6px solid #d6d6d6;
          .icon {
            width: 32px;
            min-width: 32px;
            height: 32px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
          }
          .activity-content {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 2px;
            h3 {
              font-weight: 500;
              font-size: 14px;
              line-height: 21px;
              color: #21222d;
            }
            p {
              font-weight: 400;
              font-size: 10px;
              line-height: 15px;
              color: #87888c;
            }
          }
          .time {
            margin-left: auto;
            font-weight: 400;
            font-size: 12px;
            line-height: 15px;
            color: #87888c;
          }
          &:last-child {
            padding-bottom: 0;
            border-bottom: none;
          }
          &:nth-child(3n + 1) {
            .icon {
              background: #f0effe;
            }
          }
          &:nth-child(3n + 2) {
            .icon {
              background: #fdf5ed;
            }
          }
          &:nth-child(3n + 3) {
            .icon {
              background: #e9faf0;
            }
          }
        }
      }
    }
  }
  .quick-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 20px;
    justify-content: space-between;
    .quick-link {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 5px 12px;
      border-radius: 100px;
      background: #ffffff;
      font-weight: 500;
      font-style: Medium;
      font-size: 14px;
      line-height: 21px;
      .icon {
        min-width: 34px;
        width: 34px;
        height: 34px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
      &:nth-child(5n + 1) {
        color: #47bafb;
        .icon {
          background: #47bafb;
        }
      }
      &:nth-child(5n + 2) {
        color: #f53866;
        .icon {
          background: #f53866;
        }
      }
      &:nth-child(5n + 3) {
        color: #ffc131;
        .icon {
          background: #ffc131;
        }
      }
      &:nth-child(5n + 4) {
        color: #10a142;
        .icon {
          background: #10a142;
        }
      }
      &:nth-child(5n + 5) {
        color: #af72ff;
        .icon {
          background: #af72ff;
        }
      }
    }
  }
  .compare-criticEvents {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    gap: 20px;
    .comparison-complexes {
      padding: 16px 10px 20px 20px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 4px 3px 4px 0px rgba(201, 201, 201, 0.25);
      border: 1px solid #f0f0f0;
      .comparison-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-right: 10px;
        h2 {
          font-size: 20px;
          font-weight: 400;
          line-height: 32px;
          color: #060606;
        }
        .top-complexes {
          font-weight: 400;
          font-size: 12px;
          line-height: 18px;
          color: #10a142;
          padding: 8px 12px;
          border-radius: 100px;
          background: #e9faf0;
        }
      }
      .table-wrapper {
        margin-top: 24px;
        width: 100%;
        overflow: auto;
        max-height: 252px;
        padding-right: 4px;
        &::-webkit-scrollbar {
          width: 6px;
        }
        &::-webkit-scrollbar-track {
          background: #d6d6d6;
          border-radius: 12px;
        }
        &::-webkit-scrollbar-thumb {
          background: #0b58c9;
          border-radius: 12px;
        }
        table {
          width: 100%;
          border-collapse: collapse;
          th {
            min-width: 145px;
            padding: 6px 20px;
            font-weight: 600;
            font-size: 14px;
            line-height: 21px;
            color: #0b58c9;
            background: rgba(226, 226, 226, 0.4);
            text-align: start;
            &:first-child {
              border-radius: 16px 0 0 16px;
            }
            &:last-child {
              border-radius: 0 16px 16px 0;
            }
          }
          td {
            padding: 10px 20px;
            font-weight: 500;
            font-size: 14px;
            line-height: 21px;
            color: #292d32;
            text-align: start;
            border-bottom: 1px solid #d6d6d6;
            img {
              min-width: 16px;
              height: 16px;
              width: 16px;
            }
            p {
              display: flex;
              align-items: center;
              gap: 8px;
            }
          }
        }
      }
    }
    .criticEvents {
      background: #ffffff;
      border: 1px solid #f0f0f0;
      box-shadow: 4px 3px 4px 0px rgba(201, 201, 201, 0.25);
      border-radius: 20px;
      padding: 20px;
      padding-right: 10px;
      display: flex;
      flex-direction: column;
      align-items: start;
      .criticEvents-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-right: 10px;
        h2 {
          font-weight: 400;
          font-size: 20px;
          line-height: 32px;
          color: #060606;
        }
        .time {
          font-weight: 400;
          font-size: 12px;
          line-height: 16px;
          color: #10a142;
        }
      }
      .criticEvents-list {
        margin-top: 24px;
        max-height: 250px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 14px;
        padding-right: 10px;
        &::-webkit-scrollbar {
          width: 6px;
        }
        &::-webkit-scrollbar-track {
          background: #d6d6d6;
          border-radius: 12px;
        }
        &::-webkit-scrollbar-thumb {
          background: #0b58c9;
          border-radius: 12px;
        }
        .criticEvent-item {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          padding-bottom: 14px;
          border-bottom: 0.6px solid #d6d6d6;
          .icon {
            width: 32px;
            min-width: 32px;
            height: 32px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff1f1;
            img {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
          }
          .activity-content {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 2px;
            h3 {
              font-weight: 500;
              font-size: 14px;
              line-height: 21px;
              color: #fc003c;
            }
            p {
              font-weight: 400;
              font-size: 10px;
              line-height: 15px;
              color: #87888c;
            }
          }
          .time {
            margin-left: auto;
            font-weight: 400;
            font-size: 12px;
            line-height: 15px;
            color: #87888c;
          }
          &:last-child {
            padding-bottom: 0;
            border-bottom: none;
          }
        }
      }
    }
  }
  .monthly-savings-comparison {
    margin-top: 30px;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 4px 3px 4px 0px rgba(201, 201, 201, 0.25);
    .chart-title {
      font-weight: 400;
      font-size: 20px;
      line-height: 32px;
      color: #060606;
    }
    .chart-container {
      width: 100%;
      margin-top: 28px;
      canvas {
        width: 100%;
      }
    }
  }
}
.login-container {
  width: 100%;
  min-height: 100svh;
  position: relative;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  .loginBgImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(60%);
    object-fit: cover;
  }
  .login-main {
    max-width: 925px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    padding: 55px;
    border-radius: 20px;
    .logo {
      width: 190px;
      min-width: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
      }
    }
    h1 {
      font-weight: 700;
      font-size: 28px;
      line-height: 35px;
      text-align: center;
      color: #171821;
      margin-top: 30px;
    }
    form {
      max-width: 450px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 16px;
      .form-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 14px;
        label {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #292d32;
        }
        input {
          background: #f5f5f5;
          border: 1px solid #c0c0c0;
          box-shadow: 2px 2px 4px 0px rgba(113, 113, 113, 0.25);
          border-radius: 16px;
          padding: 10px 14px;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          width: 100%;
        }
      }
      .save-memory {
        display: flex;
        align-items: center;
        gap: 12px;
        input {
          width: 18px;
          height: 18px;
          min-width: 18px;
        }
        label {
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          color: #171821;
        }
      }
      .loginBtn {
        margin-top: 24px;
        width: 100%;
        padding: 10px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        background: #0b58c9;
        transition: 0.3s ease-in-out;
        &:hover {
          background: rgba(40, 174, 243, 0.88);
        }
      }
    }
  }
}
.management-wrapper {
  width: 100%;
  margin-top: 20px;
  padding: 0 20px;
  .management-container {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    .title-blue {
      font-weight: 600;
      font-size: 22px;
      line-height: 33px;
      color: #286ccf;
    }
    .profileInfo {
      margin-top: 40px;
      width: 100%;
      .formMain {
        display: flex;
        align-items: start;
        width: 100%;
        gap: 70px;
        .form-inputs {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
          .form-item {
            display: flex;
            flex-direction: column;
            align-items: start;
            width: 100%;
            gap: 14px;
            label {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #292d32;
            }
            input,
            select {
              border: 1px solid #dfe3e4;
              border-radius: 16px;
              padding: 9px 12px;
              width: 100%;
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #171821;
            }
            .input-password {
              display: flex;
              align-items: center;
              border: 1px solid #dfe3e4;
              gap: 12px;
              border-radius: 16px;
              padding: 9px 12px;
              width: 100%;
              input {
                border: none;
                border-radius: 0;
                padding: 0;
                width: 100%;
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #171821;
              }
              .passworBtn {
                min-width: 24px;
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                img {
                  position: absolute;
                  top: 50%;
                  left: 50%;
                  width: 100%;
                  height: 100%;
                  transition: 0.3s ease-in-out;
                }
                .openedEye {
                  transform: translate(-50%, -50%) scale(0);
                }
                .hiddenEye {
                  transform: translate(-50%, -50%) scale(1);
                }
              }
            }
            .input-password.active {
              .passworBtn {
                .openedEye {
                  transform: translate(-50%, -50%) scale(1);
                }
                .hiddenEye {
                  transform: translate(-50%, -50%) scale(0);
                }
              }
            }
          }
        }
        .changeImage {
          min-width: 430px;
          width: 430px;
          display: flex;
          align-items: start;
          gap: 20px;
          .currentImage {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.02);
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              border-radius: 100px;
            }
          }
          .form-addFile {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            border: 1px solid #e9eaeb;
            position: relative;
            border-radius: 12px;
            .icon {
              width: 46px;
              height: 46px;
              min-width: 46px;
              display: flex;
              align-items: center;
              justify-content: center;
              background: #f5f5f5;
              border: 6px solid #fafafa;
              border-radius: 100px;
              img {
                width: 20px;
                height: 20px;
                min-width: 20px;
              }
            }
            input {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              cursor: pointer;
              opacity: 0;
            }
            .file-txt {
              font-weight: 600;
              font-size: 14px;
              line-height: 20px;
              color: #535862;
              text-align: center;
              span {
                color: #0b58c9;
              }
            }
          }
        }
      }
      .saveForm {
        margin-top: 60px;
        padding: 10px 30px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        background: #0b58c9;
        transition: 0.3s ease-in-out;
        &:hover {
          background: rgba(40, 174, 243, 0.88);
        }
      }
    }
    .logoInfo {
      margin-top: 40px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 50px;
      .form-addFile {
        width: 100%;
        max-width: 790px;
        padding: 8px 20px;
        border: 1px solid #d6d6d6;
        border-radius: 14px;
        display: flex;
        align-items: center;
        position: relative;
        gap: 8px;
        .icon {
          width: 46px;
          height: 46px;
          min-width: 46px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f5f5f5;
          border: 6px solid #fafafa;
          border-radius: 100px;
          img {
            width: 20px;
            height: 20px;
            min-width: 20px;
          }
        }
        input {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          cursor: pointer;
          opacity: 0;
        }
        p {
          font-weight: 400;
          font-size: 14px;
          color: #0a0a0b;
          margin-left: auto;
        }
        .file-txt {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 8px;
          p {
            font-weight: 400;
            font-size: 14px;
            color: #474747;
          }
          span {
            font-weight: 400;
            font-size: 14px;
            color: rgba(71, 71, 71, 0.5);
          }
        }
      }
      .currentImage {
        width: 88px;
        img {
          width: 100%;
        }
      }
      .saveForm {
        padding: 10px 30px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        background: #0b58c9;
        transition: 0.3s ease-in-out;
        &:hover {
          background: rgba(40, 174, 243, 0.88);
        }
      }
    }
    .management-tabLinks {
      display: flex;
      align-items: center;
      gap: 50px;
      width: 100%;
      .link {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        color: #9e9e9e;
        border-bottom: 2px solid transparent;
        transition: 0.3s ease-in-out;
        padding-bottom: 8px;
      }
      .link.active {
        color: #0b58c9;
        border-color: #0b58c9;
      }
    }
    .management-subTabLinks {
      display: flex;
      align-items: center;
      gap: 30px;
      width: 100%;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #d6d6d6;
      .link {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: #9e9e9e;
        transition: 0.3s ease-in-out;
      }
      .link.active {
        color: #0b58c9;
      }
    }
    .management-filter {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 24px;
      .visibility-limit {
        display: flex;
        align-items: center;
        gap: 10px;
        p {
          font-weight: 400;
          font-size: 14px;
          line-height: 21px;
          color: #8a8a8a;
        }
        select {
          width: 75px;
          border: 1px solid #ecf0f1;
          text-align: center;
          padding: 6px;
          border-radius: 100px;
        }
      }
      .management-filter-right {
        display: flex;
        align-items: center;
        gap: 16px;
        .filterBtn {
          display: flex;
          align-items: center;
          gap: 10px;
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          color: #292d32;
          border: 1px solid #dfe3e4;
          padding: 6px 16px;
          border-radius: 100px;
          img {
            min-width: 20px;
            width: 20px;
          }
        }
        .date-input {
          display: flex;
          align-items: center;
          gap: 10px;
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          color: #292d32;
          border: 1px solid #dfe3e4;
          padding: 6px 20px;
          border-radius: 100px;
          img {
            min-width: 20px;
            width: 20px;
            height: 20px;
          }
          input[type="date"]::-webkit-calendar-picker-indicator {
            opacity: 0;
          }
          input {
            cursor: pointer;
            width: 130px;
            border: none;
            background: transparent;
            font-size: 16px;
            font-weight: 400;
            color: #292d32;
            appearance: none;
            vertical-align: middle;
          }
        }
      }
      .filter-wrapper {
        max-width: 560px;
        width: 100%;
        display: none;
        grid-template-columns: repeat(4, 1fr);
        background: #f9f9f9;
        border: 1px solid #f5f5f5;
        box-shadow: 2px 4px 4px 0px rgba(219, 219, 219, 0.25);
        border-radius: 16px;
        position: relative;
        .closeFilter {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 20px;
          font-weight: 500;
          font-size: 14px;
          line-height: 18px;
          color: #202224;
          border-right: 1px solid rgba(151, 151, 151, 0.3);
          padding: 24px;
          img {
            min-width: 20px;
            width: 20px;
          }
        }
        .filterDate {
          width: 100%;
          padding: 24px;
          border: none;
          cursor: pointer;
          border-right: 1px solid rgba(151, 151, 151, 0.3);
          background: transparent;
          text-align: center;
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          color: #202224;
          &::-webkit-calendar-picker-indicator {
            opacity: 0;
          }
        }
        .filter-type {
          width: 100%;
          .filterTypeBtn {
            text-wrap: nowrap;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 500;
            font-size: 14px;
            line-height: 18px;
            color: #202224;
            border-right: 1px solid rgba(151, 151, 151, 0.3);
            padding: 24px;
            img {
              transition: 0.2s ease-in-out;
              min-width: 24px;
              width: 24px;
            }
          }
          .filter-type-wrapper {
            position: absolute;
            top: 65px;
            right: 20px;
            background: #fff;
            width: max-content;
            z-index: 2;
            width: 636px;
            box-shadow: 0px 13px 61px 0px rgba(169, 169, 169, 0.37);
            border-radius: 16px;
            padding: 24px;
            display: none;
            flex-direction: column;
            align-items: start;
            gap: 20px;
            h3 {
              font-weight: 700;
              font-size: 18px;
              line-height: 24px;
              color: #202224;
            }
            .types-checks {
              width: 100%;
              display: flex;
              flex-wrap: wrap;
              gap: 16px;
              padding-bottom: 20px;
              border-bottom: 1px solid rgba(151, 151, 151, 0.3);
              .checkItem {
                padding: 8px 14px;
                border-radius: 100px;
                border: 1px solid #ecf0f1;
                display: flex;
                align-items: center;
                gap: 10px;
                position: relative;
                input {
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  cursor: pointer;
                  opacity: 0;
                  z-index: 1;
                }
                p {
                  font-weight: 400;
                  font-size: 14px;
                  line-height: 18px;
                }
                .removeCheckItem {
                  position: relative;
                  z-index: 2;
                  min-width: 20px;
                  width: 20px;
                  height: 20px;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  img {
                    width: 100%;
                    height: 100%;
                  }
                }
              }
              .checkItem.active {
                background: #0b58c9;
                p {
                  color: #fff;
                }
                .removeCheckItem {
                  img {
                    filter: brightness(100);
                  }
                }
              }
            }
            .note {
              max-width: 100%;
              p {
                font-weight: 400;
                font-size: 14px;
                line-height: 21px;
                color: #434343;
              }
            }
            .apply {
              padding: 12px 40px;
              color: #fff;
              background: #0b58c9;
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              font-weight: 400;
              border-radius: 16px;
            }
          }
        }
        .filter-type.active {
          .filterTypeBtn {
            img {
              transform: rotate(180deg);
            }
          }
          .filter-type-wrapper {
            display: flex;
          }
        }
        .resetFilter {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          font-weight: 500;
          font-size: 14px;
          line-height: 18px;
          color: #fc003c;
          padding: 24px;
          img {
            min-width: 18px;
            width: 18px;
          }
        }
      }
      .management-filter-right.hidden {
        display: none;
      }
      .filter-wrapper.active {
        display: grid;
      }
    }
    .datatable-wrapper {
      .datatable-top {
        padding: 0;
      }
      .datatable-container {
        border: none;
      }
    }
    .table-wrapper {
      margin-top: 20px;
      width: 100%;
      overflow-x: auto;
    }
    table {
      width: 100%;
      border-collapse: collapse;

      thead {
        th {
          background: #f3f7fa;
          padding: 10px;
          font-weight: 600;
          font-size: 16px;
          line-height: 24px;
          color: #21222d;
          cursor: pointer;
          border-bottom: none;

          .datatable-sorter {
            &::before,
            &::after {
              opacity: 1;
            }
          }
          &:not(:first-child) {
            min-width: 140px;
          }
          &:first-child {
            border-radius: 16px 0 0 16px;
            .datatable-sorter {
              display: none;
            }
          }
          &:last-child {
            border-radius: 0 16px 16px 0;
          }
        }
      }

      tbody {
        tr {
          border-bottom: 1px solid #e8e8e8;

          &.selected {
            td {
              background: #eef3ff !important;
            }
          }
          td {
            padding: 26px 10px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #292d32;
            vertical-align: middle;

            input {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
            .status-color-green {
              width: max-content;
              min-width: 72px;
              text-align: center;
              padding: 8px 10px;
              background: #e0fbea;
              border-radius: 10px;
              color: #10a142;
            }
            .status-color-red {
              min-width: 72px;
              text-align: center;
              padding: 8px 10px;
              background: #ffe8e8;
              border-radius: 10px;
              color: #fc003c;
              width: max-content;
            }
            .status-color-orange {
              min-width: 72px;
              text-align: center;
              padding: 8px 10px;
              background: #fff5e9;
              border-radius: 10px;
              color: #f29425;
              width: max-content;
            }
            .text-green {
              color: #10a142;
            }
            .text-red {
              color: #fc003c;
            }
            .text-orange {
              color: #f29425;
            }
            .text-blue {
              color: #286ccf;
            }
            .table_role_items {
              display: flex;
              gap: 8px;
              flex-wrap: wrap;
              .roleItem {
                padding: 6px 12px;
                border-radius: 100px;
                background: rgba(70, 121, 239, 0.12);
                font-weight: 400;
                font-size: 10px;
                line-height: 12px;
                color: #131527;
              }
            }
          }
          .checkbox-cell {
            height: auto;
            text-align: center;
          }
          .actions {
            display: flex;
            align-items: center;
            gap: 20px;
            .action-item {
              width: 20px;
              height: 20px;
              min-width: 20px;
              display: flex;
              align-items: center;
              justify-content: center;
              cursor: pointer;
              img {
                width: 100%;
                height: 100%;
              }
            }
          }
          &:nth-child(even) {
            background: #fafbfd;
          }
        }
      }
    }
    .views {
      width: 100%;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px 40px;
      .view-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        padding-bottom: 16px;
        .view-item-title {
          font-weight: 400;
          font-size: 12px;
          line-height: 16px;
          color: rgba(0, 0, 0, 0.6);
        }
        .view-item-description {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #21222d;
        }
        .text-red {
          color: #fc003c;
        }
        .text-orange {
          color: #f29425;
        }
        .text-green {
          color: #10a142;
        }
        .view-status-active {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 10px;
          gap: 8px;
          width: 100px;
          font-weight: 400;
          font-size: 12px;
          line-height: 16px;
          text-align: center;
          color: #10a142;
          background: #e1ffe2;
          border-radius: 100px;
          img {
            min-width: 18px;
            width: 18px;
          }
        }
        .view-status-deactive {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 10px;
          gap: 8px;
          width: 100px;
          font-weight: 400;
          font-size: 12px;
          line-height: 16px;
          text-align: center;
          color: #fc003c;
          background: rgba(252, 0, 60, 0.16);
          border-radius: 100px;
          img {
            min-width: 18px;
            width: 18px;
          }
        }
      }
    }
  }
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
    gap: 16px;
    .nextBtn,
    .prevBtn {
      width: 20px;
      height: 20px;
      min-width: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .disabled {
      opacity: 0.4;
      filter: invert(1) brightness(0);
    }
    .pagination-items {
      display: flex;
      align-items: center;
      gap: 8px;
      .pagination-item {
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #060606;
        background: transparent;
        transition: 0.2s ease-in-out;
      }
      .pagination-item.active {
        background: #0b58c9;
        color: #fff;
      }
    }
  }
}
.roleForm {
  width: 100%;
  margin: 50px 0 70px;
  padding: 0 50px;
  .role-name {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    width: 100%;
    label {
      font-weight: 400;
      font-size: 12px;
      line-height: 15px;
      color: rgba(0, 0, 0, 0.6);
    }
    input {
      width: 100%;
      background: #fbfbfb;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 12px;
      padding: 18px;
      outline: none;
      font-weight: 400;
      font-size: 16px;
      line-height: 20px;
      color: #000;
      &::placeholder {
        color: rgba(26, 26, 26, 0.6);
      }
    }
  }
  .permissons {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    width: 100%;
    p {
      font-weight: 400;
      font-size: 12px;
      line-height: 15px;
      color: rgba(0, 0, 0, 0.6);
    }
    .permissons-boxes {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 20px;
      border-radius: 12px;
      .permisson-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        background: #fff;
        border-radius: 12px;
        padding: 12px;
        h2 {
          width: 100%;
          text-align: center;
          padding: 16px;
          font-weight: 500;
          font-size: 16px;
          line-height: 20px;
          color: #131527;
          background: rgba(70, 121, 239, 0.05);
          border-radius: 8px;
        }
        .permisson-list {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 16px;
          padding: 0 8px 8px;
          .permisson-item {
            display: flex;
            align-items: center;
            gap: 8px;
            input {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
            label {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #474747;
              input:checked + & {
                color: #5d61ef;
              }
            }
          }
        }
      }
    }
  }
  .saveForm {
    padding: 10px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    background: #0b58c9;
    transition: 0.3s ease-in-out;
    margin-top: 32px;
    margin-left: auto;
    img {
      width: 24px;
      height: 24px;
      min-width: 24px;
    }
    &:hover {
      background: rgba(40, 174, 243, 0.88);
    }
  }
}
.roleView {
  width: 100%;
  margin-top: 28px;
  width: 100%;
  padding: 0 50px;
  .role-head {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 18px;
    span {
      font-weight: 400;
      font-size: 12px;
      line-height: 15px;
      color: rgba(0, 0, 0, 0.6);
    }
    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 20px;
      color: #1a1a1a;
    }
  }
  .permissons {
    margin-top: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    width: 100%;
    p {
      font-weight: 400;
      font-size: 12px;
      line-height: 15px;
      color: rgba(0, 0, 0, 0.6);
    }
    .permissons-boxes {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      background: #f5f5f5;
      gap: 20px;
      border-radius: 12px;
      .permisson-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        background: #fff;
        border-radius: 12px;
        padding: 12px;
        h2 {
          width: 100%;
          text-align: center;
          padding: 18px;
          font-weight: 500;
          font-size: 16px;
          line-height: 20px;
          color: #131527;
          background: #f8f8f9;
          border-radius: 8px;
        }
        .permisson-list {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 16px;
          padding: 0 8px 8px;
          .permisson-item {
            p {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #474747;
            }
          }
        }
      }
    }
  }
}
.addModalContainer {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.14);
  .addModal {
    position: relative;
    max-height: calc(100svh - 60px);
    overflow-y: auto;
    width: 100%;
    max-width: 940px;
    background: #fff;
    border-radius: 16px;
    padding: 60px 75px;
    .modalTitle {
      font-weight: 700;
      font-size: 28px;
      line-height: 34px;
      color: #060606;
      text-align: center;
    }
    .closeAddModal {
      width: 30px;
      height: 30px;
      min-width: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 40px;
      right: 40px;
      img {
        width: 100%;
        height: 100%;
      }
    }
    form {
      margin-top: 70px;
      width: 100%;
      .form-main {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 30px;
        .form-input {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          input {
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #000;
          }
        }
        .form-input-full {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          grid-column: span 2;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          input {
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #000;
          }
        }
        .form-input-span {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .input-span {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 12px;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            input {
              width: 100%;
              font-size: 16px;
              line-height: 24px;
              font-weight: 400;
              color: #000;
              border: none;
            }
            span {
              font-weight: 400;
              font-size: 16px;
              line-height: 26px;
              color: #7b7b7b;
            }
          }
        }
        .form-input-select {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .input-select {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 12px;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            input {
              width: 100%;
              font-size: 16px;
              line-height: 24px;
              font-weight: 400;
              color: #000;
              border: none;
            }
            select {
              font-weight: 400;
              font-size: 16px;
              line-height: 26px;
              color: #7b7b7b;
              width: max-content;
              border: none;
            }
          }
        }
        .form-input-date-range {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .input-date-range {
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            gap: 8px;
            input {
              font-size: 16px;
              line-height: 24px;
              color: #000;
              font-weight: 400;
              border: none;
              width: max-content;
              max-width: 100%;
              &::-webkit-calendar-picker-indicator {
                opacity: 0;
              }
            }
            span {
              width: 12px;
              height: 1px;
              background: #000;
            }
          }
        }
        .form-tagInput {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .choices {
            width: 100%;
          }
          .choices__inner {
            border-radius: 16px;
            border-color: #dfe3e4;
            background: transparent;
            padding: 12px;
            input {
              font-size: 16px;
              line-height: 24px;
              background: transparent;
              padding: 0;
              margin: 0;
            }
          }
          .choices__list--multiple {
            .choices__item {
              background: #000;
            }
          }
        }
        .form-select {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          select {
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #000;
            height: 46px;
          }
        }
        .form-addFile {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          grid-column: span 2;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .addFile {
            width: 100%;
            padding: 12px 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            position: relative;
            .file-txt {
              width: 100%;
              display: -webkit-box;
              -webkit-line-clamp: 1;
              overflow: hidden;
              -webkit-box-orient: vertical;
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #87888c;
              height: 24px;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
            input {
              width: 100%;
              position: absolute;
              top: 0;
              left: 0;
              height: 100%;
              z-index: 1;
              cursor: pointer;
              opacity: 0;
            }
          }
        }
        .form-textarea {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          grid-column: span 2;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          textarea {
            height: 120px;
            resize: none;
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #000;
          }
        }
        .form-input-parameters {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          grid-column: span 2;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .three-inputs {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            .input-span {
              display: flex;
              align-items: center;
              width: 100%;
              gap: 12px;
              padding: 10px;
              border: 1px solid #dfe3e4;
              border-radius: 16px;
              input {
                width: 100%;
                font-size: 16px;
                line-height: 24px;
                font-weight: 400;
                color: #000;
                border: none;
              }
              span {
                font-weight: 400;
                font-size: 16px;
                line-height: 26px;
                color: #7b7b7b;
                text-wrap: nowrap;
              }
            }
          }
        }
      }
      .submitFrom {
        margin-top: 40px;
        padding: 13px 42px;
        background: #0b58c9;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: #ffffff;
        border-radius: 16px;
      }
    }
  }
}
.addModalContainer.showed {
  display: flex;
}
.editModalContainer {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.14);
  .editModal {
    position: relative;
    max-height: calc(100svh - 60px);
    overflow-y: auto;
    width: 100%;
    max-width: 940px;
    background: #fff;
    border-radius: 16px;
    padding: 60px 75px;
    .modalTitle {
      font-weight: 700;
      font-size: 28px;
      line-height: 34px;
      color: #060606;
      text-align: center;
    }
    .closeEditModal {
      width: 30px;
      height: 30px;
      min-width: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 40px;
      right: 40px;
      img {
        width: 100%;
        height: 100%;
      }
    }
    form {
      margin-top: 70px;
      width: 100%;
      .form-main {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 30px;
        .form-input {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          input {
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #000;
          }
        }
        .form-input-full {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          grid-column: span 2;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          input {
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #000;
          }
        }
        .form-input-span {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .input-span {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 12px;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            input {
              width: 100%;
              font-size: 16px;
              line-height: 24px;
              font-weight: 400;
              color: #000;
              border: none;
            }
            span {
              font-weight: 400;
              font-size: 16px;
              line-height: 26px;
              color: #7b7b7b;
            }
          }
        }
        .form-input-select {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .input-select {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 12px;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            input {
              width: 100%;
              font-size: 16px;
              line-height: 24px;
              font-weight: 400;
              color: #000;
              border: none;
            }
            select {
              font-weight: 400;
              font-size: 16px;
              line-height: 26px;
              color: #7b7b7b;
              width: max-content;
              border: none;
            }
          }
        }
        .form-input-date-range {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .input-date-range {
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            gap: 8px;
            input {
              font-size: 16px;
              line-height: 24px;
              color: #000;
              font-weight: 400;
              border: none;
              width: max-content;
              max-width: 100%;
              &::-webkit-calendar-picker-indicator {
                opacity: 0;
              }
            }
            span {
              width: 12px;
              height: 1px;
              background: #000;
            }
          }
        }
        .form-tagInput {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .choices {
            width: 100%;
          }
          .choices__inner {
            border-radius: 16px;
            border-color: #dfe3e4;
            background: transparent;
            padding: 12px;
            input {
              font-size: 16px;
              line-height: 24px;
              background: transparent;
              padding: 0;
              margin: 0;
            }
          }
          .choices__list--multiple {
            .choices__item {
              background: #000;
            }
          }
        }
        .form-select {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          select {
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            height: 46px;
            color: #000;
          }
        }
        .form-addFile {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          grid-column: span 2;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .addFile {
            width: 100%;
            padding: 12px 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            position: relative;
            .file-txt {
              width: 100%;
              display: -webkit-box;
              -webkit-line-clamp: 1;
              overflow: hidden;
              -webkit-box-orient: vertical;
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #87888c;
              height: 24px;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
            input {
              width: 100%;
              position: absolute;
              top: 0;
              left: 0;
              height: 100%;
              z-index: 1;
              cursor: pointer;
              opacity: 0;
            }
          }
        }
        .form-textarea {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          grid-column: span 2;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          textarea {
            height: 120px;
            resize: none;
            width: 100%;
            padding: 10px;
            border: 1px solid #dfe3e4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #000;
          }
        }
        .form-input-parameters {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 14px;
          grid-column: span 2;
          label {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #292d32;
          }
          .three-inputs {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            .input-span {
              display: flex;
              align-items: center;
              width: 100%;
              gap: 12px;
              padding: 10px;
              border: 1px solid #dfe3e4;
              border-radius: 16px;
              input {
                width: 100%;
                font-size: 16px;
                line-height: 24px;
                font-weight: 400;
                color: #000;
                border: none;
              }
              span {
                font-weight: 400;
                font-size: 16px;
                line-height: 26px;
                color: #7b7b7b;
                text-wrap: nowrap;
              }
            }
          }
        }
      }
      .submitFrom {
        margin-top: 40px;
        padding: 13px 42px;
        background: #0b58c9;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: #ffffff;
        border-radius: 16px;
      }
    }
  }
}
.editModalContainer.showed {
  display: flex;
}
.errorModalContainer {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.14);
  .errorModal {
    position: relative;
    max-height: calc(100svh - 60px);
    overflow-y: auto;
    width: 100%;
    max-width: 940px;
    background: #fff;
    border-radius: 16px;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    .modalImage {
      max-width: 522px;
      width: 100%;
      img {
        width: 100%;
      }
    }
    .modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 420px;
      width: 100%;
      gap: 20px;
      h2 {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        color: #1e1e1e;
      }
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #868686;
      }
    }
    .closeErrorModal {
      width: 24px;
      height: 24px;
      min-width: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 30px;
      right: 40px;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.errorModalContainer.showed {
  display: flex;
}
.successModalContainer {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.14);
  .successModal {
    position: relative;
    max-height: calc(100svh - 60px);
    overflow-y: auto;
    width: 100%;
    max-width: 940px;
    background: #fff;
    border-radius: 16px;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    .modalImage {
      max-width: 522px;
      width: 100%;
      img {
        width: 100%;
      }
    }
    .modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 420px;
      width: 100%;
      gap: 20px;
      h2 {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        color: #1e1e1e;
      }
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #868686;
      }
    }
    .closeSuccessModal {
      width: 24px;
      height: 24px;
      min-width: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 30px;
      right: 40px;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.successModalContainer.showed {
  display: flex;
}
.error-container {
  width: 100%;
  padding: 0 20px;
  margin: 40px 0;
  .error-inner {
    min-height: 100svh;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    .errorImage {
      max-width: 522px;
      width: 100%;
      img {
        width: 100%;
      }
    }
    .error-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 770px;
      width: 100%;
      gap: 20px;
      h2 {
        font-weight: 700;
        font-size: 40px;
        line-height: 50px;
        text-align: center;
        color: #171821;
      }
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #868686;
      }
      .errorBackLink {
        padding: 10px;
        margin-top: 4px;
        max-width: 170px;
        width: 100%;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        background: #0b58c9;
        transition: 0.3s ease-in-out;
        &:hover {
          background: rgba(40, 174, 243, 0.88);
        }
      }
    }
  }
}
@media only screen and (min-width: 1700px) {
  .roleForm,
  .roleView {
    .permissons {
      .permissons-boxes {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  }
  .management-wrapper {
    .management-container {
      .views {
        grid-template-columns: repeat(4, 1fr);
      }
    }
  }
}
@media only screen and (min-width: 1900px) {
  .roleForm,
  .roleView {
    .permissons {
      .permissons-boxes {
        grid-template-columns: repeat(4, 1fr);
      }
    }
  }
}
.custom-textarea {
  height: 120px;
  resize: none;
  width: 100%;
  padding: 10px;
  border: 1px solid #dfe3e4;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
}
.custom-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #dfe3e4;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  height: 46px;
}
.custom-display-flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    gap: 20px; /* elementlər arası boşluq */
}
.alert {
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    display: block;
}

/* Uğurlu mesaj */
.alert-success {
    background-color: #e6f9ec;
    border-left: 5px solid #28a745;
    color: #1e7e34;
}

/* Error mesajı */
.alert-error {
    background-color: #fdecea;
    border-left: 5px solid #dc3545;
    color: #b52a37;
}

/* İstəyə görə fade-in animasiyası */
.alert {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
.custom-input{
    width: 100%;
    padding: 10px;
    border: 1px solid #dfe3e4;
    border-radius: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}
.custom-button{
    padding: 13px 42px;
    background: #0b58c9;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
    border-radius: 16px;
}
#newCustomerForm label{
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 10px;
}
/* style the container that Select2 creates */
#customer_id + .select2-container .select2-selection {
    height: 46px;
    padding: 10px;
    border: 1px solid #dfe3e4;
    border-radius: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}

/* optionally adjust the dropdown arrow */
#customer_id + .select2-container .select2-selection__arrow {
    height: 46px;
}

/* optional: input inside dropdown for search */
.select2-container--default .select2-search--dropdown .select2-search__field {
    font-size: 16px;
    line-height: 24px;
}
