/* Boutons onglets */
.ct-role-buttons .custom-button {
  background-color: #c60000;
  color: #fff;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}
.ct-role-buttons .custom-button.active,
.ct-role-buttons .custom-button:hover {
  background-color: #333;
}
/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip .tooltip-content {
  visibility: hidden;
  width: 260px;
  background: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .2s;
}
.tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}
/* Table font-size & spacing */
#ct-orders-table {
  margin-top: 20px;
}
#ct-orders-table th,
#ct-orders-table td {
  font-size: 14px;
  padding: 8px;
}
