.myrepo {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .myrepo h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
  }
  
  .swiper {
    width: 100%;
    padding-bottom: 2rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #0366d6;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .repo {
    border-radius: 12px;
    padding: 1.5rem;
    width: 340px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .repo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .repo h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
  }
  
  .repo p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
    min-height: 48px;
  }
  
  .repo small {
    display: block;
    margin-top: auto;
    font-size: 0.85rem;
    color: #777;
  }
  
  .repo a {
    text-decoration: none;
    color: #0366d6;
  }