@import url("/assets/css/common.css");

.workspacecontainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 2rem;
}

.workspacecard {
  width: 400px;
  border-radius: 7px;
  border: 1px solid #f2ebff;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #f4f1f9;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 15px;
  position: relative;
}
.role::before {
  content: url(/assets/images/icons/1e963ba0d5b033aeb09e786145d0cc74.svg);
  margin-right: 4px;
}
.role {
  font-size: 10px;
  position: absolute;
  right: 11px;
  bottom: 10px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding: 2px 10px;
  height: 20px;
  background: #f8f5fe;
  border-radius: 17px;
  color: #746a92;
  font-weight: 500;
  width: fit-content;
}

.workspacecard:hover {
  box-shadow: 0px 10px 30px 0px #e9e1f8;
  cursor: pointer;
}

.workspacelogo {
  width: 32px;
  height: 32px;
  background-color: #60c6d3;
  display: inline-block;
  border-radius: 50%;
}

.workspacename {
  font-family: Plus Jakarta Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #5a4f6c;
}

.goto::before{
  content: url(/assets/images/icons/2ab41a6820ef40a715111c4dd97ea8bf.svg);
}
.goto {
  color: #6647bd;
  font-weight: 500;
  font-size: 13px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.searchcontainer {
  border-bottom: 1px solid var(--primary-6, #f2ebff);
  margin-top: 60px;
}

.searchelements {
  width: calc(100% - 150px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.searchelements h1 {
  color: #140a26;
  font-family: Plus Jakarta Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130.5%;
}

.searchelements .search input {
  height: 40px;
  outline: none;
  border: none;
}

.searchicon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("/assets/images/icons/search.svg");
}

.search {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2ebff;
  border-radius: 5px;
  gap: 5px;
}
