/* Center the entire two-column layout */
.layout-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    margin-top: 20px;
}

/* Left column holds buttons + Member Photos link */
.left-column {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers the Member Photos link */
    width: 200px;
}

.left-column {
    align-self: flex-start;
}

/* Buttons */
.layout-buttons {
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.layout-buttons .btn {
    margin-bottom: 3px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  margin: 8px 0;
  text-align: center;
}

.btn:hover {
  background-color: #6a1b9a;
}

/* Member Photos link centered under buttons */
.member-link {
    margin-top: 20px;
    text-align: center;
}

.member-link a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

header h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.right-column {
    text-align: left;
}


/* Right column: list of picture links */
.right-column a {
    display: block;
    margin-bottom: 4px;
    text-decoration: none;
    color: blue;
}
