
/* Highlighted Checkbox */
.form-check-input {
    width: 1.5em;
    height: 1.5em;
    cursor: pointer;
    border: 2px solid #007bff; /* Blue border for focus */
}

.form-check-input:checked {
    background-color: #007bff; /* Blue background when checked */
    border-color: #0056b3; /* Darker blue border */
}

.form-check-label {
    font-size: 1rem;
    font-weight: bold;
    color: #343a40; /* Dark gray text */
}
.list-group-item ul {
    padding-left: 1.2rem;
    margin: 0;
}
.list-group-item ul li {
    list-style-type: "➤ ";
    margin: 0.2rem 0;
}
.toast {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure the image stays fixed in the top right */
.img-thumbnail {
    max-width: 125px;
    max-height: 200px;
    border: 2px solid #ddd;
}

.findme-cell:hover {
  background-color: #737f8a;
}



#image-upload {
    margin-top: 10px;
    width: 200px;
}


.badge[data-bs-toggle]:hover {
  background-color: #e9f5ff;
  border-color: #b6e0fe;
}




/* Scope only to this form */
.product-variant-form .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    margin-bottom: 0.35rem;
}

/* Add subtle spacing consistency */
.product-variant-form .form-control,
.product-variant-form .form-select {
    border-radius: 0.4rem;
}

/* Optional: nicer focus */
.product-variant-form .form-control:focus,
.product-variant-form .form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
}


/* Variant Activity header fixes */
.variant-activity-card .variant-activity-header {
  background-color: #050505;           /* match your card header */
  color: #e5f0ea;
  border-bottom: 1px solid var(--color-secondary);    /* make it visible */
  padding: 0.75rem 1rem;
}

/* Stop global h1-h6 border/padding from causing weird header lines */
.variant-activity-card .variant-activity-header h1,
.variant-activity-card .variant-activity-header h2,
.variant-activity-card .variant-activity-header h3,
.variant-activity-card .variant-activity-header h4,
.variant-activity-card .variant-activity-header h5,
.variant-activity-card .variant-activity-header h6 {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  color: inherit !important;
}

/* Toggle button */
.variant-activity-toggle {
  background: transparent !important;
  border: 1px solid rgba(231, 11, 169, 0.35) !important;
  color: #e5f0ea !important;
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.variant-activity-toggle:hover {
  background: rgba(231, 11, 169, 0.12) !important;
  border-color: rgba(231, 11, 169, 0.65) !important;
}

/* Chevron rotate when collapsed */
.variant-activity-toggle .bi {
  transition: transform 0.15s ease;
}

.variant-activity-toggle[aria-expanded="false"] .bi {
  transform: rotate(-90deg);
}

/* ✅ Variant Activity: make stats readable on dark background */
.variant-activity-card .card-body {
  background-color: #050505 ;
}

.variant-activity-card .card-body a {
  color: #e5f0ea !important;          /* bright link */
  text-decoration: none !important;
}

.variant-activity-card .card-body a:hover {
  color: #e70ba9 !important;          /* your accent pink */
  text-decoration: underline !important;
}

/* The small labels ("Total Ordered", etc.) */
.variant-activity-card .card-body .text-muted {
  color: rgba(229, 240, 234, 0.75) !important;
}

/* The big numbers/emoji line */
.variant-activity-card .card-body .fs-3 {
  color: #e5f0ea !important;
}

@media (max-width: 768px) {
  .variant-activity-header h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    width: 100%;
  }

  .variant-activity-toggle {
    align-self: flex-end;
  }
}
@media (max-width: 768px) {
  .product-variant-form .row > div {
    margin-bottom: 0.75rem;
  }

  .product-variant-form .form-label {
    font-size: 0.7rem;
  }

  .product-variant-form input,
  .product-variant-form select {
    font-size: 14px;
  }
}