/* CSS personnalisé pour l'extension Cartmoye */

/* Fond blanc */
#cartmoye-cart table {
  background-color: #ffffff;
}

/* Bordures et grilles invisibles */
#cartmoye-cart table, #cartmoye-cart th, #cartmoye-cart td {
  border: none;
}
.cartmoye-quantity-minus,
.cartmoye-quantity-plus {
    padding: 5px 10px;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
}

.cartmoye-quantity-minus {
    margin-right: 5px;
}

.cartmoye-quantity-plus {
    margin-left: 5px;
}


/* Texte en noir */
#cartmoye-cart, #cartmoye-cart p, #cartmoye-cart input, #cartmoye-cart button {
  color: #000000;
}

/* Bouton de suppression noir avec fond transparent */
.cartmoye-remove {
  color: #000000;
  background-color: transparent !important;
  border: none;
}

/* Style du curseur au survol du bouton de suppression */
.cartmoye-remove:hover {
  cursor: pointer;
  background-color: transparent !important;
}

#cartmoye-cart table.cartmoye-products-table {
  width: 100%;
}

#cartmoye-cart table.cartmoye-products-table th,
#cartmoye-cart table.cartmoye-products-table td {
  text-align: center;
  padding: 10px;
}

#cartmoye-cart table.cartmoye-products-table th:first-child,
#cartmoye-cart table.cartmoye-products-table td:first-child {
  text-align: left;
}

#cartmoye-cart table.cartmoye-products-table th {
  background-color: #ffffff;
}

#cartmoye-cart table.cartmoye-products-table td {
  background-color: #ffffff;
}

#cartmoye-cart .cartmoye-remove {
  font-size: 14px;
  font-weight: bold;
}

#cartmoye-cart p {
  margin: 0;
  padding: 10px;
  text-align: center;
}

.cartmoye-commander-button {
    background-color: #252324;
    color: white !important;
    border: none !important;
}

.cartmoye-commander-button:hover,
.cartmoye-commander-button:focus {
    background-color: black;
    color: white !important;
    border: none !important;
}

