.checkbox-list{
  list-style:none;
}

/* STOCK */
.stock-item{
  border-bottom: 1px solid #ddd;
}

.stock-item:hover {
    background-color: #f5f5f5;
}


.stock-actions {
    white-space: nowrap;
}

.stock-row {
    transition: background-color 0.2s ease;
}

.stock-row:hover {
    background-color: rgba(0, 123, 255, 0.05); /* Lighter blue background */
    border: 1px solid rgba(0, 123, 255, 0.2); /* Subtle blue border */
}

/*ALERTS*/

/*bootstrap alert CSS, translated to the django-standard levels of*/
/*debug, info, success, warning, error*/

.alert-debug {
  background-color: #fff;;
  border-color: #d6e9c6;
  color: #000;
}

.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}

/*fixing mobile horizontal scroll */
@media (max-width: 576px) {
  .container-fluid {
    margin: 0.5rem 0 !important;
  }
}