body {
  font-family: Arial, sans-serif;
  
}

 .link-style {
        text-decoration: none;
        color: #000000;
    }

    .link-style:hover {
        color: blue;
    }

.container {
    display: flex;
  }
  .boxes-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .box {
      width: 200px;
      height: 50px;
      border: 2px solid #fff; 
      background-color: #e32024; 
      cursor: pointer;
      text-align: center;
      line-height: 50px; 
      font-family: Arial, sans-serif;
      font-size: 16px;
      color: white; 
      transition: all 0.3s ease; 
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
      border-radius: 8px; 
      text-decoration: none;
    }
    .box:hover {
      background-color: white; 
      color: #e32024; 
      transform: translateY(-2px); 
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
    }
  .box-heading {
    font-weight: bold;
    
    text-decoration: none;
  }
  #data-display {
    margin-top: 0;
      width: 100%;
      overflow-y: auto; 
      max-height: 700px; 
      padding: 10px;
      display: block; 
      
    }
   
  .card {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card h1,
  .card h3 {
    color: #333;
    margin-bottom: 20px;
  }
  
  .card ul {
    list-style: none;
    padding: 0;
  }
  
  .card ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  
  .card ul li:last-child {
    border-bottom: none;
  }
  
  .card ul li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .card ul li a:hover {
    color: #0056b3;
  }

  
  
    
  @media only screen and (max-width: 600px) {
      .container {
        flex-direction: column; /* Change flex-direction to column for mobile */
      }
    
      .boxes-container {
        align-items: center;
      }
      .box{
          width: 100%;
      }
      #data-display{
        height: 100%;
        overflow: none;
      }
    }