body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 20px;
   color: #333;
}

/* Headings */
h2, h3, h4 {
    margin: 0.5rem 0;
}

h2 {
    font-size: 2em;
    margin-bottom: 10px;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
    /*color: #0056b3;*/
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.2em;
    font-weight: normal;
}

/* Lists */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul ul {
    margin-left: 20px;
}
/*
ul ul li::before {
    content: '• ';
}
*/
li {
    margin-bottom: 10px;
}

/* Text Styling */
strong {
    font-weight: bold;
}

/* Layout */
section {
    margin-bottom: 2rem;
}

/* Grid */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    margin-bottom: 1rem;
}

/* Flexbox */
.job-entry {
    display: flex;
}

.date, .company-info {
    display: inline-block;
}

.date {
    width: 150px;
    text-align: left;
    padding-right: 20px;
    
    white-space: nowrap;
}

.company-info {
    margin-left: 20px;
    flex-grow: 1;
}

.company-info h3,
.company-info h4,
.company-info ul {
    margin-left: 1rem;
}

.company-info ul li {
    list-style-type: disc;
}
body {
  font-family: Arial, sans-serif;
}

h2 {
  font-size: 1.5rem;
}

h3, h4, strong {
  font-size: 1rem;
}

.job-entry ul li {
  font-size: 0.7rem; /* Adjusts bullet point text size to mimic Word's size 9 */
}

.date p {
  font-size: 0.7rem; /* Adjusts the date text size to mimic Word's size 9 */
}

/* Other existing styles */
body {
  font-family: Arial, sans-serif;
}

h2 {
  font-size: 1.2rem;
}

h3, h4, strong {
  font-size: 0.9rem;
}

.job-entry ul li,
.date p {
  font-size: 0.8rem; /* Adjusts bullet point and date text size */
}

/* Other existing styles */
/* Existing CSS */
body {
  font-family: Arial, sans-serif;
}

h2 {
  font-size: 1.2rem;
}

h3, h4, strong {
  font-size: 0.9rem;
}

.job-entry ul li,
.date p {
  font-size: 0.8rem;
}

/* New addition for the summary section */
section h2 + p {
  font-size: 0.8rem;
}
body {
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 1.4rem;
}

h2 {
  font-size: 1.1rem;
}

h3, h4, strong {
  font-size: 0.9rem;
}

.job-entry ul li,
.date p,
section h2 + p {
  font-size: 0.8rem;
}

.job-entry ul li {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-bottom: 0.4rem; /* Adjust as needed */
}




header {
  text-align: center;
}
.job-entry {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.date {
  flex: 0 0 150px;  /* Fixed width */
}

.company-info {
  flex: 1;  /* Take the remaining width */
}
h4 {
  font-weight: bold;
}
