/* Reset simple */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* Header */
header {
  background: #007BFF;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header h2 {
  font-size: 1.2em;
  font-weight: normal;
  margin-bottom: 10px;
}

header .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: white;
  color: #007BFF;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

header .btn:hover {
  background: #f0f0f0;
}

/* Sections */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #007BFF;
}

/* Skills */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.skill {
  background: #e9f0ff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9em;
}

/* Timeline */
.timeline .job {
  margin-bottom: 20px;
}

.timeline .job h3 {
  font-size: 1.2em;
  color: #007BFF;
}

.timeline .job span {
  font-size: 0.9em;
  color: #555;
}

/* Footer */
footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 20px;
  margin-top: 40px;
}

.btn-queens {
  display: inline-block;
  padding: 4px 10px;           /* espace autour du texte, compact */
  color: #333;                 /* couleur du texte assortie aux compétences */
  text-decoration: none;       /* enlève le soulignement */
  border: 2px solid #333;      /* bordure fine pour effet bouton */
  border-radius: 4px;          /* coins légèrement arrondis */
  transition: all 0.3s ease;   /* animation douce pour hover */
  font-weight: normal;          /* même style que les autres compétences */
  font-size: 0.9em;            /* légèrement plus petit si nécessaire */
}

.btn-queens:hover {
  background-color: #333;      /* fond noir au survol */
  color: white;                /* texte blanc au survol */
  cursor: pointer;             /* changement du curseur */
}


/* bouton node.js  */
.btn-node {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-node:hover {
  background-color: #45a049;
}

.result {
  margin-top: 25px;
  overflow-x: auto;
}

.result table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
}

.result th, .result td {
  border: 1px solid #ccc;
  padding: 8px;
}

.result th {
  background-color: #eee;
}
