
/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 2rem;
}

/* === Container === */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* === Headings === */
h1, h2, h3 {
  margin-bottom: 0.75rem;
  color: #1a202c;
}

h1 {
  font-size: 2rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3rem;
}

h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* === Paragraphs and Lists === */
p {
  margin-bottom: 1rem;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* === Links === */
a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Resume Layout Enhancements === */
.section {
  margin-bottom: 2rem;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.job-title {
  font-weight: bold;
}

.date-range {
  font-style: italic;
  font-size: 0.9rem;
  color: #555;
}

.centered {
  text-align: center;
}

.location {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}


.links {
  margin-top: 0.25rem;
  font-size: 1rem;
}

.job-header, .job-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-align {
  float: right;
  font-style: normal;
}