body {
    background-color: white;
    font-family: 'Jura', sans-serif;
    margin: 0;
  }
  
  /* Navbar */
  /* Minimal Navbar Styling */
.minimal-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    height: 50px;
    padding: 16px 30px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Jura', sans-serif;
}

.minimal-navbar .brand a {
    font-weight: 500;
    font-size: 1.6rem;
    color: black;
    letter-spacing: 0.06rem;
    text-decoration: none;
}


.minimal-navbar .nav-links a {
    margin-left: 30px;
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}
  
  /* Section Layout */
  .papers-section {
    padding-top: 140px;
    padding-bottom: 60px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2rem;
    color: black;
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* Card Design */
  .paper-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 12px 12px 50px;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  
  
  .paper-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #f6b9d4;
  }
  
  .paper-title {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .paper-desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  .author-info {
    font-size: 0.85rem;
    color: #888;
    margin-top: -4px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .read-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ff6b9d;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
    margin-top: auto;
  }
  
  .read-button:hover {
    background-color: #ff6b9d;
  }
  
  .read-button.outline {
    background-color: transparent;
    color: #ff6b9d;
    border: 1px solid #ff6b9d;
    margin-left: 0;
  }
  
  .read-button.outline:hover {
    background-color: #ff6b9d;
    color: rgb(0, 0, 0);
  }
  