/* Resume-specific styling - isolated from MkDocs */
/* All classes start with resume- */
.resume-page, .resume-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.resume-page {
  font-family: Arial, sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.4;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.resume-page .title{
  font-family: Arial, sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.4;
  font-weight: bold;
}

/* Header */
.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.resume-page .name {
  font-size: 22px;
  color: #111;
  font-weight: bold;
}
.resume-page .tagline {
  color: #333;
  font-size: 14px;
}
.resume-page .contact {
  text-align: right;
  font-size: 12px;
  color: #555;
}

/* Main layout */
.resume-main {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 20px;
}
.resume-content .resume-section, .resume-sidebar .resume-section {
  margin-bottom: 12px;
}
.resume-content h2, .resume-sidebar h2 {
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  margin-bottom: 5px;
}
.resume-content .item {
  margin-bottom: 8px;
}
.resume-content .title {
  font-weight: bold;
  font-size: 14px;
}
.resume-content .meta {
  font-size: 12px;
  color: #555;
}
.resume-content ul {
  margin-left: 20px;
  list-style-type: disc;
  font-size: 13px;
}
.resume-content .right {
  float: right;
}

/* Sidebar */
.resume-sidebar {
  border-left: 1px solid #000;
  padding-left: 10px;
  font-size: 13px;
}

/* Links */
.resume-page a {
  color: #000;
  text-decoration: none;
}
.resume-page a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
  .resume-main {
    grid-template-columns: 1fr;
  }
  .resume-sidebar {
    border-left: none;
    border-top: 1px solid #000;
    padding-top: 10px;
  }
  .resume-page .contact {
    text-align: left;
  }
}