/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  h1 {
    text-align: center;
    color: #333;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
    font-weight: bold;
  }
  
  input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    margin-top: 20px;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #218838;
  }
  
  .cv-output {
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #ccc;
  }
  
  #cvContent {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .cv-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #ccc;
  }
  
  .cv-details h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
  }
  
  .cv-details p {
    margin: 5px 0;
    color: #555;
  }
  
  .cv-section {
    margin-bottom: 20px;
  }
  
  .cv-section h4 {
    margin: 0 0 10px 0;
    color: #333;
    border-bottom: 2px solid #28a745;
    padding-bottom: 5px;
  }
  
  .cv-section p {
    margin: 0;
    color: #555;
    line-height: 1.6;
  }
  
  #downloadBtn {
    margin-top: 20px;
    background-color: #007bff;
  }
  
  #downloadBtn:hover {
    background-color: #0056b3;
  }