.resume-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.institution {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1em;
    margin-bottom: 2em;
}

/* Aligns institution and position headers properly */
.institution-header, .position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Ensures left alignment for name/title */
.institution-name, .position-title {
    flex-grow: 1;
    text-align: left;
}

/* Keeps location and dates from shifting too far */
.institution-location, .position-dates {
    text-align: right;
    max-width: 40%;
}

/* Left-align responsibilities */
.position-responsibilities {
    margin-left: 0;
    text-align: left;
    font-style: normal;
}

/* Experience list styling */
.experiences-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    text-align: left;
}

.experience {
    margin-bottom: 10px;
    text-align: left;
    display: block;
    width: 100%;
}

.experience-content {
    text-align: left;
    display: block;
    width: 100%;
}

.experience a {
    text-align: left;
    text-decoration: none;
    display: inline;
}

.experience-description {
    text-align: left;
}

/* Nested skill list inside experience */
.skills {
    display: block;
    width: 100%;
    clear: both;
    padding-left: 20px;
    text-align: left;
    margin-top: 5px;
}

.skills ul {
    list-style-type: circle;
    padding-left: 20px;
    margin-top: 5px;
}