.cards-list {
  z-index: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto 0;
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-direction: column;
}

.card {
  width: 800px;
  max-width: 95vw;
  margin: 0 auto;
  height: 120px;
  background-color: white;
  border-left: 10px solid #ee771e;
  box-shadow: 2px 2px 5px rgba(90, 90, 90, 0.1);
  transition: 0.125s;
}

.card .card_link {
  padding: 20px 40px;
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 40px;
}

.card .card_link .card_image {
  height: 50px;
  width: 80px;
  justify-content: center;
  display: flex;
}

.card .card_title {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 30px;
  height: 50px;
  padding-left: 40px;
  width: calc(100% - 200px);
  line-height: 50px;
}

.card .card-plus {
  height: 50px;
  width: 80px;
  justify-content: center;
  display: flex;
}

.card:hover {
  transform: scale(1.01);
  box-shadow: 4px 4px 10px rgba(90, 90, 90, 0.2);
}
.card:hover a {
  text-decoration: none;
}

.title-white {
  color: white;
}

.title-black {
  color: gray;
}

@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}

#edit-profile-image-upload-button{
  display:none;
}

