.content-wrapper {
  display: flex;
  gap: 10px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.left-panel {
  width: 30%;
  gap: 10px;
  background-color: #444444;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}



.right-panel {
  width: 70%;
  background-color: #919191;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}


.title-panel {
  width: 100%;
  background-color: #202020;
  color: #f4f4f4;
  font-weight: bold;
  text-align: center;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.non-disponible {
  width: 100%;
  height: 100%;
  color: #272727;
  font-size: 14px;
  text-align: center;
}

.PaiementTitle {
  width: 100%;
  color: white;
  margin: 4px;
  font-size: 24px;
  text-align: center;
}

.lesClasseTitle {
  width: 100%;
  color: white;
  margin: 4px;
  font-size: 24px;
  text-align: center;
}



#right-panel-lesClasses {
  flex: 2;
  display: flex;
  background-color: #000000;
  border-left: 2px solid #ccc;
}

.sub-panel {
  flex: 1;
  border-left: 1px solid #ddd;
  padding: 10px;
  overflow-y: auto;
}


.eleve-item {
  color: white;
}











.list-group {
  list-style: none;
  padding: 0;
}

.list-item,
.student-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.list-item:hover,
.student-item:hover {
  background-color: #f5f5f5;
  /* Light gray on hover like Android */
}

.list-item:active,
.student-item:active {
  background-color: #e0e0e0;
  /* Slightly darker when clicked */
}





.classe-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: rgb(37, 37, 37);
  color: white;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

.classe-item:hover {
  background-color: #505050;
  /* Light gray on hover like Android */
}

.classe-item:active {
  background: green;
}

.section-title {
  color: white;
  padding: 5px;
  border-radius: 4px;
}