/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 27 2025 | 17:22:41 */
    .containerCP {
		margin:50px;
	  width: 960px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .top-row {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .board {
      border: 2px solid #ccc;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    #board1, #board3 {
      width: 300px;
      height: 400px;
    }

    #board2 {
      width: 500px;
      height: 400px;
    }

    #board4 {
      width: 1150px;
      height: 200px;
    }

.commentBoard {
  position: absolute;
  top: 50%;   /* ajuste selon la position du board rose */
  left: 37%; /* 700px;  /* ajuste selon ton layout */
  width: 460px;
  height: 230px;
  border: 2px solid #ffb6c1; /* rose clair */
  background: #b5bac9; /* rose translucide */
  border-radius: 12px;
  display: none;
  z-index: 9999; /* au-dessus du board rose */
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  padding: 12px 14px;        
  padding-top: 18px;         
  box-sizing: border-box;
  font-family: Computer Modern Serif, Latin Modern Roman, serif;
  color: navy;
  overflow-Y: auto;
  
}

.explicationsBoard {
  position: absolute;
  top: 560px;        
  left: 420px;
  width: 600px;
  height: 300px;
  border: 2px solid #b3cde0;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  display: none; 
  z-index: 60;
  padding : 15px;
  box-shadow : 0 6px 20px rgba(0,0,0,0.2);
  overflow-y : auto;
  font-family : Computer Modern Serif, serif;
}

.droplist {
    position: relative;
    width: 240px;
    margin-bottom: 10px;
}

.droplist-header {
    background: rgb(95, 204, 110); /*#f8f9fa;*/
    border: 2px solid #e0e0e0; 
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    min-height: 15px;
}

.droplist-header:hover {
    border-color: #667eea;
    background: #f0f0f0;
}

.droplist-header.active {
    border-color: #667eea;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.droplist-header-content {
    flex: 1;
    color: #333;
    font-size: 14px;
}

.droplist-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #667eea;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.droplist-arrow.rotate {
    transform: rotate(180deg);
}

.droplist-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background:lightblue; /*  white;*/
    /* border: 2px solid #667eea;*/
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.droplist-list.open {
    max-height: 250px;
    overflow-y: auto;
}
.droplist-groupe {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #ffb6c1;
    color: #f00707;
    border-bottom: 1px solid #f0f0f0;
    min-height: 25px;
    display: flex;
    align-items: center;
}

.droplist-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.droplist-item:last-child {
    border-bottom: none;
}

.droplist-item:hover {
    background: #f8f9ff;
}

.droplist-item.selected {
    background: #667eea;
    color: white;
}

