body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

#experience {
    display: flex;
    margin: 50px auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}


.fade-in-section {
    padding-right: 20px;
}

.jss1 {
    background: #f8f8f8;
    border-right: 1px solid #ddd;
    padding: 20px;
}

.MuiTabs-root {
    display: flex;
    flex-direction: column;
}

.MuiTabs-flexContainer {
    display: flex;
    flex-direction: column;
}

.MuiButtonBase-root {
    background: #eee;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: left;
}

.MuiButtonBase-root:hover {
    background: #ddd;
}

.MuiTab-root {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
}

.MuiTab-textColorInherit {
    color: inherit;
}

.Mui-selected {
    background: #ddd;
    font-weight: bold;
}

.job-description {
    padding: 20px;
    flex-grow: 1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.joblist-job-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.joblist-job-company {
    font-size: 20px;
    color: #666;
}

.joblist-duration {
    margin: 10px 0;
    font-size: 14px;
    color: #999;
}

.joblist-skills {
    margin: 10px 0;
}

.skill-button {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #eee;
    border-radius: 15px;
    font-size: 12px;
    color: #333;
    pointer-events: none;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    color: #333;
}

li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}
