body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8ff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    height: 100%;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li:first-child {
    margin-left: 0;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #555;
}

.container {
    display: flex;
    flex: 1;
    height: calc(100vh - 120px); /* Adjusted height calculation */
    overflow: hidden;
}

.sidebar {
    width: 20%;
    background-color: #e9ecef;
    padding: 20px;
    box-sizing: border-box;
}

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

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

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px 16px;
    border-radius: 5px;
}

.sidebar ul li a:hover {
    background-color: #d0d0d0;
}

.content {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.content section {
    margin-bottom: 20px;
}

/* Center content in specific sections */
.center-content {
    text-align: center;
}

/* Style the recherche list */
.recherche-list {
    list-style-type: disc; /* Use bullets */
    margin-left: 40px; /* Indent the list */
}

.skills-languages {
    width: 20%;
    background-color: #f2f2f2;
    padding: 20px;
    box-sizing: border-box;
}

.skills,
.languages,
.logiciels {
    margin-bottom: 20px;
}

.skill {
    margin-bottom: 10px;
}

.progress-bar {
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    height: 10px;
}

.progress {
    height: 10px;
    background-color: #76c7c0;
}

.experience {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

h2,
h3 {
    color: #444;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    position: static;
    bottom: 0;
    width: 100%;
}
/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    position: static;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #007bff; 
}

a:hover {
    color: #66b3ff; 
    text-decoration: underline;
}