/* resume.css */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background-color: black;
}

.resume-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ccc;
}

p {
  margin: 5px 0;
}

ul {
  list-style-type: disc;
  margin: 10px 0 20px 20px;
}

li {
  margin-bottom: 10px;
}

.date-align {
  float: right;
  font-weight: normal;
}

.section-header {
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
}

.education-entry, .job {
  margin-bottom: 20px;
}

.education-entry strong, .job strong {
  display: inline-block;
}

.education-entry .date-align, .job .date-align {
  display: inline-block;
  float: right;
}

.section-content ul li::marker {
  color: #007bff; /* Custom marker color */
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}
