.photos {
  padding: 1rem;
}

.photos__photos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 1rem;
}

.albums-container-list {
  padding: 1rem;
}

.add-button-existing {
  font-size: 1.4rem;
  color: green;
  margin-left: 1rem;
  cursor: pointer;
}

.photo-title-scroll {
    overflow-x: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
    height: 85px;
    width: 100%;
    line-height: 45px;
    display: block;
    text-align: center;
    font-weight: 700;
}

.albums-select-head {
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
}

.album-select-list {
  font-size: 1rem;
    min-height: 8rem;
    max-height: 12rem;
  overflow-y: scroll;
    border: solid 2px gainsboro;
}

.album-selection-line {
  margin: 10px;
}

.mode-button {
  padding: 8px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 8px;
}

.mode-button:nth-child(1) {
  background: blue;
}

.mode-button:nth-child(2) {
  background: olivedrab;
}

.mode-button:nth-child(3) {
  background: red;
}

.album-selection-line:nth-child(even) {
  background: lightgrey;
}

.photo-albums-mode-container {
  display: flex;
  justify-content: space-between;
}

