/* static/discover.css */
.discover-page {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .discover-page h2 {
    color: #50c878;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .discover-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .discover-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #222222;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .discover-item:hover {
    transform: translateY(-2px);
  }
  
  .community-pfp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #50c878;
    margin-right: 15px;
  }
  
  .community-name {
    color: #50c878;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .community-name:hover {
    color: #3da660;
    text-decoration: underline;
  }
  
  .no-communities {
    text-align: center;
    color: #bbbbbb;
    font-size: 1em;
    padding: 20px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .discover-page {
      margin: 15px;
      padding: 15px;
    }
  
    .discover-item {
      flex-direction: column;
      text-align: center;
      padding: 10px;
    }
  
    .community-pfp {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    .community-name {
      font-size: 1em;
    }
  }
