tr[data-parent] td {
	padding-left: 15px;
	font-style: italic;
}

.btn-xs {
  padding: 0.1rem 0.3rem;
  font-size: 0.65rem;
  line-height: 1;
  border-radius: 0.2rem;
}


.rubrique-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  background-color: #f4f4f4;
}

.rubrique-card {
  width: 140px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rubrique-image {
  width: 120px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 10px;
  cursor: pointer;
}

.rubrique-title {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin-bottom: 6px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rubrique-meta {
  font-size: 10px;
  color: #777;
  margin-top: 6px;
}

.rubrique-pdf {
  margin: 5px 0;
  color: red;
  font-size: 20px;
  text-decoration: none;
}


td.pointille-vertical {
  position: relative;
  height: 100px; /* ou plus selon ton contenu */
}

td.pointille-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px dotted black;
  transform: translateX(-50%);
}



td.folder:hover	{background-color:#EEEEEE }




.table-fixe-scroll-container {
  max-height: 100%;
  overflow-y: auto;
  display: block;
}

.table-fixe-scroll {
  width: 100%;
  border-collapse: collapse;
}

.table-fixe-scroll thead th {
  position: sticky;
  top: 0;
}


.table-fixe-scroll thead th {
  border-bottom: 1px solid #D9D9D9;
  padding: 8px 12px;
  color: #555;
  background-color: #f9f9f9;
  text-align: left;
  vertical-align: middle;
}