html, button, input, select, textarea {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
body {
  background-color: #f0f0f3;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}



#wrapper {
  max-width: 900px;  min-width: 329px;  margin-left: auto;  margin-right: auto;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}



header img {
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 2px 34px rgba(0,0,0,0.2);
  float: right;
  margin-left: 12px;
  width: 120px;
  height: 120px;
  object-fit: cover;
}
header {
  overflow: auto;
  padding-bottom: 6px;
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 6px 0;
}
h2 {
  margin: 0 0 12px 0;
  color: #666;
  font-weight: 400;
}
h3 {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  color: #333;
}



small {
  color: #666;
}

dd {
  margin: 0 0 8px 0;
}

footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #e6e6e6;
  padding-top: 12px;
  text-align: center;
}
ul {
  margin: 0 0 0 18px;
  padding: 0;
}
a {
  color: #1a73e8;  text-decoration: none;
}

dt {  font-weight: 700;  margin-top: 8px;
}

section {  margin-bottom: 18px;}

article {  margin-bottom: 12px;}

footer {  margin-top: 20px;  font-size: 0.9rem;  color: #555;  border-top: 1px solid #e6e6e6;
  padding-top: 12px;
}

.details-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.details-btn.active {
    transform: rotate(45deg);
    background: #dc3545;
}

.details {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 5px;
    overflow: hidden;
}

.details.hidden {
    display: none;
}

.details.expanding {
    display: block;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    opacity: 0;
}

.details ul {
    margin: 10px 0;
    padding-left: 20px;
}

.details li {
    margin: 5px 0;
}

/* Styles pour les tooltips */
.skill-item {
    position: relative;
    display: inline-block;
    padding: 3px 8px;
    margin: 2px;
    background: #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.skill-item:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

.skill-item .tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: normal;
    white-space: normal;
    width: 250px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.skill-item:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.skill-stars {    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    color: #ffc107;
    letter-spacing: 2px;
}

.skill-stars .star-filled {    color: #ffc107;
}



.skill-stars .star-empty {
    color: #ddd;
}

/* Styles pour le graphique d'evaluation */
#skills-chart {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

#chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#skillsCanvas {
    max-width: 100%;
    height: auto;
}
