/* Réinitialisation de quelques styles par défaut */
body, h1, h2, h3, h4, h5, h6, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

nav {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.tabs {
    list-style: none;
    padding: 0;
}

.tabs li {
    display: inline-block;
    margin-right: 20px;
}

.tabs a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tabs a:hover {
    background-color: #555;
}

.tab-content {
    padding: 20px;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.project iframe{
    width: 50%;
    height: 35vh;
    border: none;
}

iframe {
    width: 100%;
    height: 85vh;
    border: none;
}


.cvsection, .cvsubsection {
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.cvtable li {
    margin-bottom: 15px;
    list-style: none;
    border-left: 2px solid #333;
    padding-left: 15px;
}

.date {
    font-weight: bold;
    color: #777;
}

.position {
    font-weight: bold;
    color: #333;
}

.company, .school {
    color: #555;
}

.chartlabel {
    display: inline-block;
    margin-right: 5px;
    padding: 3px 8px;
    background-color: #ccc;
    color: #333;
    font-size: 12px;
    border-radius: 3px;
}

.cvsection h2 {
    margin-top: 20px;
}

.cvsection ul.cvtable li {
    margin-bottom: 15px;
    list-style: none;
    border-left: 2px solid #333;
    padding-left: 15px;
}

.location {
    font-weight: bold;
    color: #333;
}

.event-details {
    font-style: italic;
    color: #555;
}

.publication-context {
    font-weight: bold;
    font-size: 12px;
    color: #777;
}

/* Styles pour la section Hobbies */
.cvsection ul.skills {
    list-style-type: none;
    padding-left: 0;
}

.cvsection ul.skills li {
    margin-bottom: 10px;
}

.skill-icon {
    font-size: 20px;
    margin-right: 10px;
}

.skill-description {
    font-size: 16px;
}
.hobbies li {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project h3 {
    margin-top: 0;
}

.project a {
    color: #007BFF;
    text-decoration: none;
}

@media (max-width: 768px) {
    .project {
        padding: 10px;
    }
}