@import url('main.css');

.back-arrow{
  width: 2rem;
}

.app-card{
  align-items: center;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 80%);
  border-radius: 1rem;
  display: flex;
  gap: 2rem;
  padding: 1rem;
  text-decoration: none;
}
.app-card > div{
  align-items: center;
  color: black;
  display: flex;
  font-size: 2rem;
  height: 25%;
  justify-content: end;
  margin-right: 1.5rem;
}
.app-card > img{
  width: 70px;
}

.app-warning{
  align-items: center;
  background-color: hsl(36, 100%, 62%);
  border: 1px solid hsl(0, 0%, 80%);
  border-radius: 2rem;
  display: flex;
  gap: 1rem;
  min-height: 60px;
  padding: 2rem;
}
.app-warning > img{
  width: 80px;
}

.apps-table{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
}

.no-apps{
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  height: 70vh;
  justify-content: center;
  text-align: center;
}

.top-bar{
  align-items: center;
  display: flex;
  gap: 1.5rem;
  padding: 0 3rem;
}

.yellow-dot{
  aspect-ratio: 1;
  background-color: hsl(36, 100%, 62%);
  border-radius: 50%;
  margin-right: 0.5rem;
  width: 1.5rem;
}
