.nav-buttons {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.nav-btn {
    background-color: #e5e7eb;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid #d1d5db;
}

.nav-btn:hover {
    background-color: #d1d5db;
    color: #111827;
}

.photo-buttons {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .carousel-btn {
    background-color: #e5e7eb;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 30%;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid #d1d5db;
    cursor: pointer;
  }
  
  .carousel-btn:hover {
    background-color: #d1d5db;
    color: #111827;
  }
  
  
