body {
    font-family: 'Iosevka Aile', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
}

/* RESPONSIVE FIX */
img, table {
    max-width: 100%;
    height: auto;
}

/* SCROLLABLE TABLES */
table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
}
.header-text {
    flex: 1;
    margin-right: 20px;
}
.header h1 {
    margin: 0 0 3px 0;
    font-size: 2.2em;
    color: #2c3e50;
}
.header p {
    margin: 3px 0;
    color: #555;
}
.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #ecf0f1;
    overflow: hidden;
    flex-shrink: 0;
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section {
    margin-bottom: 30px;
}
.section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 10px;
}
.job {
    margin-bottom: 25px;
}
.job h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}
.job .company {
    font-style: italic;
    color: #7f8c8d;
    font-size: 1.1em;
}
.job .date {
    float: right;
    color: #7f8c8d;
    font-size: 0.9em;
}
.project {
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #3498db;
}
.project h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.skill-category {
    flex: 1;
    min-width: 200px;
    margin-bottom: 15px;
}
.skill-category h4 {
    color: #3498db;
    margin-bottom: 8px;
    font-size: 1em;
}
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.skill {
    background-color: #f0f8ff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.9em;
    color: #2c3e50;
}
.certification {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.certification a {
    color: #3498db;
    text-decoration: none;
}
.certification a:hover {
    text-decoration: underline;
}
.highlight {
    background-color: #f9f9f9;
    border-left: 4px solid #27ae60;
    padding-left: 15px;
    margin-bottom: 20px;
}
.spid-highlight {
    background-color: #f9f9f9;
    border-left: 4px solid #9b59b6;
    padding-left: 15px;
    margin-bottom: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}
table th, table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
table th {
    background-color: #f0f8ff;
    color: #2c3e50;
}
/* HIDE LLM TEXT FROM HUMANS (visible only to LLM parsers) */
.hidden-llm-text {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
}