.icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
  color: white;
}
.menu {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: white;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
  width: 256px;
  height: 100%;
  margin: 0;
}
.menu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 1rem;
}
.menu-line {
  background-color: rgb(95, 86, 200);
  height: 1px;
  width: 100%;
}
.menu-item {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
  padding: 1rem;
  margin-top: 1rem;
  width: 80%;
  flex-direction: column;
}
.menu-item1:hover {
  background-color: #4f46e5;
  width: 15.25rem;
  gap: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.menu-item1 {
  display: flex;
  padding: 10px;
  height: 40px;
  width: 15.25rem;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.search-bar {
  display: flex;
  background-color: white;
  padding: 1rem;
  width: 100%;
  height: 74px;
}
.search-bar-text {
  display: flex;
  margin: 0;
  width: 100%;
  align-items: center;
  height: auto;
  background-color: white;
}
.menu-footer {
  display: flex;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
}
.body {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
  height: 100%;
  width: 100%;
}
.card {
  display: flex;
  background-color: white;
  border-radius: 12px;
  border: 1px solid rgb(229, 231, 235);
  padding: 1.5rem;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 0.5rem;
  min-width: 250px;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
a {
  text-decoration: none;
  color: white;
}
.menu-footer-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 768px) {
  .menu-title > p {
    display: none;
  }
  .menu {
    width: 68px;
  }
  .menu-item1 {
    width: auto;
  }
  .menu-item1:hover {
    width: auto;
  }
  .menu-text {
    display: none;
  }
  .menu-footer-text {
    display: none;
  }
}
