body {
    background-color: #f4f6f8;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .container {
    margin-top: 30px;
  }
  
  .form-section,
  .preview-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-section {
    border-right: 1px solid #e9ecef;
    height: 90vh;
    overflow: auto;
  }
  
  .preview-section {
    border-left: 1px solid #e9ecef;
  }
  
  h2 {
    margin-bottom: 20px;
    color: #5a67d8;
    font-weight: 500;
  }
  
  label {
    font-weight: 500;
  }
  
  .btn-custom {
    /* background-color: #5a67d8; */
    color: #fff;
    border: none;
  }
  
  .btn-custom:hover {
    background-color: #bd49d5e5;
    color: #fff;
  }
  
  .header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
  }
  
  .header img {
    width: 100px;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .header .name h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
  }
  
  .header .name p {
    margin: 5px 0 0;
    color: #718096;
  }
  
  .section-title {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #5a67d8;
    padding-bottom: 5px;
    font-weight: 500;
    color: #2d3748;
  }
  
  .summary,
  .content,
  .contact-info,
  .languages-info,
  .education-info,
  .experience-info,
  .achievements-info {
    margin-top: 20px;
  }
  
  .education-detail,
  .experience-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .education-detail textarea,
  .education-detail input,
  .experience-detail textarea {
    margin-right: 10px;
  }
  
  .education-detail textarea {
    flex: 1;
  }
  
  @media print {
    body {
      padding: 0;
      background-color: #fff;
    }
  
    .container {
      margin-top: 0;
      padding: 0;
    }
  
    .form-section,
    .preview-section {
      box-shadow: none;
      border: none;
      margin: 0;
    }
  
    .header {
      border-bottom: none;
      padding-bottom: 0;
    }
  
    .header img {
      width: 60px;
      height: auto;
    }
  
    .btn-custom {
      display: none;
    }
  
    .form-group {
      margin-bottom: 10px;
    }
  }
  
  .language-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .language-detail input,
  .language-detail select {
    flex: 1;
    margin-right: 10px;
  }
  
  .language-detail select {
    width: auto;
  }
  
  /* Print styles */
  @media print {
    body {
      padding: 0;
      background-color: #fff;
    }
  
    .container {
      margin-top: 0;
      padding: 0;
    }
  
    .form-section,
    .resume-title {
      display: none;
    }
  
    .resume-preview {
      display: block;
    }
  
    .header {
      border-bottom: none;
      padding-bottom: 0;
    }
  
    .header img {
      width: 60px;
      height: auto;
    }
  
    .btn-custom {
      display: none;
    }
  
    .form-group {
      margin-bottom: 10px;
    }
  }
  
  .language-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .language-detail select {
    width: auto;
  }
  
  .collapseDiv {
    cursor: pointer;
    color: #fff;
    background-color: #5a67d8;
    padding: 4px;
    padding-left: 10px;
    border-radius: 5px;
  }
  
  .add-more {
    font-size: 12px;
    padding: 5px 10px;
    margin-top: 5px;
  }
  
  .add-more:hover {
    color: #fff;
  }
  
  .language-detail {
    margin-bottom: 1rem;
  }
  
  @media (max-width: 767px) {
    .form-check-inline {
      display: block;
      margin-bottom: 0.5rem;
    }
  }