body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    /*background: lightblue;*/
  }
  
  .container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 3px solid grey; /* Set the border color to grey */
    border-radius: 8px;
    overflow: hidden;
  }
  
  .contact-container {
    display: flex;
    flex-direction: column; /* Set flex direction to column */
    align-items: center;
    background-color: #003147;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-transform: uppercase; /* Make all text uppercase */
  }

  .export-button {
    position: absolute;
    top: 10px;
    right: 10px;
}

#export-pdf-button {
    background-color: white;
    color: #003147;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#export-pdf-button:hover {
    background-color: #f0f0f0;
}
  
  .contact-container .profile-picture {
    margin-bottom: 20px; /* Add margin bottom to separate from contact details */
    text-align: center; /* Align contents to center */
  }
  
  .contact-container .profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }
  
  .contact-container h1,
  .contact-container h4 {
    margin: 5px 0; /* Add margin for spacing */
  }
  
  .contact-container h4 {
    margin: 5px 0; /* <--- Add margin for spacing */
    color: grey; 
  }
  

  .contact-details {
    text-align: center; /* Align contents to center */
    line-height: 1.5; /* Adjust line height for better readability */
  }
  
  .contact-details i {
    vertical-align: middle;
    margin-right: 5px; /* Add margin between icons */
    color: grey;
  }
  
  .contact-details span {
    margin-right: 10px; /* Add margin between contacts */
  }
  
  .contact-details span:last-child {
    margin-right: 0; /* Remove margin for the last contact */
  }
  
  .profile-container,
  .experience-container,
  .skills-container,
  .education-container,
  .patents-container {
    background-color: #003147;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .profile-details {
    text-align: justify;
  }
  
  .profile-details h2 {
    margin-bottom: 10px; /* Add spacing below heading */
  }
  
  .profile-details p {
    margin: 0 0 10px; /* Add spacing between paragraphs */
    line-height: 1.5; /* Professional-looking line height */
  }
  
  .profile-container h2,
  .experience-container h2,
  .skills-container h2,
  .education-container h2,
  .patents-container h2 {
    margin-top: 0;
    color: grey;
  }

  .experience-container h3,
  .skills-container h3,
  .education-container h3,
  .patents-container h3 {
    margin-top: 0;
    color: grey;
  }


  .experience-container {
    margin-bottom: 20px;
  }
  
  
  .experience-item {
    margin-bottom: 30px;
  }
  
  .experience-item h3 {
    margin-bottom: 5px;
  }
  
  .experience-item .position {
    font-style: italic;
  }
  
  .experience-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 0; /*  Reset the default margin */
  }
  
  .experience-item ul li {
    margin-bottom: 5px; /* Adjust the spacing between bullets */
    text-align: justify;
    vertical-align: middle; /*  Vertically align the bullets */
  }

  .skills-container {
    margin-top: 20px;
  }
  
  .skills-container .section {
    padding-left: 10px;
  }
  
  
  .skills-container .skills-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 0; /* Reset the default margin */
  }
  
  .skills-container .skills-list li {
    margin-bottom: 10px;
    vertical-align: middle; /* Vertically align the bullets */
  }
  
  .skills-container .skills-list li strong {
    font-weight: bold;
  }
  

  