/* Section Styling */
.disease-navigation {
    width: 100%;
    padding: 20px 10vw;
    background-color: #ffffff; /* White background for the section */
    box-sizing: border-box;
  }
  
  /* Section Title */
  .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
  }
  
  /* Disease List Styling */
  .disease-list {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Minimal gap between boxes */
  }
  
  /* Disease Item */
  .disease-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff; /* White background for items */
    border-left: 5px solid #074793; /* Default left border color */
    padding: 8px 12px; /* Reduced padding for compactness */
    border-radius: 3px; /* Slightly rounded corners */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05); /* Light shadow for depth */
    transition: transform 0.2s, background-color 0.3s, border-color 0.3s, color 0.3s;
    cursor: pointer;
  }
  
  .disease-item:hover {
    background-color: #f9f9f9; /* Light gray background on hover */
    border-left: 5px solid #f8a42b; /* Orange border on hover */
  }
  
  .disease-item.active {
    background-color: #074793; /* Deep blue background for active item */
    color: white; /* White text for active item */
    border-left: 5px solid #074793; /* Deep blue border for active item */
  }
  
  /* Disease Title */
  .disease-title {
    font-size: 1.05rem; /* Adjusted font size */
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    color: #333; /* Default color */
    transition: color 0.3s;
  }
  
  .disease-item:hover .disease-title {
    color: #f8a42b; /* Orange color on hover */
  }
  
  .disease-item.active .disease-title {
    color: white; /* White text for active item */
  }
  
  /* Arrow Styling */
  .arrow {
    font-size: 1.2rem;
    color: inherit;
    transition: transform 0.3s;
  }
  
  .disease-item:hover .arrow {
    transform: translateX(3px); /* Arrow moves slightly on hover */
  }
  

  .disease-list a{
    text-decoration: none;
  }