
.photo-container {
  margin: 10px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  background-color: var(--photo-container-background);
}

.photo-empty-message {
  margin-top: 10%;
  color: var(--primary-color);
  font-style: italic;
  text-align: center;
}

.photo-card {
  display: flex;
  justify-content: start;
  background: linear-gradient(135deg, #ebebeb 0%, #dddddd 65%, #909090 100%); ;
  margin: 15px;
  width: 100%;
  border: 2px solid #4f4f4f;
  box-shadow: 6px 3px 3px #3f3f3f;

}

.photo-card-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-card-imgs-container {
  width: 250px;
}

.photo-container img {
  transition: .4s;
  margin: 15px;
  cursor: pointer;
  box-shadow: 5px 5px 2px #888;
}

.photo-container img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}

.photo-title {
  color: var(--photo-title-color);
  width: inherit;
  text-align: center;
  margin: 0px 0px 0px 0px;
}

.photo-data-container {
  width: 100%;
  padding: 10px;
}

.photo-data-item {
  display: flex;
  justify-content: start;
  color: var(--primary-color);
  text-align: start;
  margin: 8px 0px 8px 0px ;
  font-weight: 500;
  font-size: larger;
}
.photo-data-item-title {
  font-size: larger;
  font-weight: 700;
  min-width: 140px;
}

.photo-data-item-content {
  margin-left: 15px;
}