/* AutoParts Pro — CEP DLP Test Harness Styles */

/* Product cards */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Sensitive data highlighting */
.text-danger.font-monospace {
  background-color: #fff3cd;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid #ffc107;
}

/* User-selectable text for copy testing */
.user-select-all {
  user-select: all;
  cursor: pointer;
}

.user-select-all:hover {
  background-color: #e3f2fd;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  .navbar, footer {
    display: none !important;
  }
  
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  .card {
    border: 1px solid #000 !important;
    break-inside: avoid;
  }
  
  .text-danger {
    color: #000 !important;
    font-weight: bold !important;
  }
}

/* DLP test scenario cards */
.card.border-warning {
  transition: transform 0.2s ease;
}

.card.border-warning:hover {
  transform: translateY(-2px);
}

/* Admin dashboard stat cards */
.card.bg-primary, .card.bg-success, .card.bg-warning, .card.bg-info {
  transition: transform 0.2s ease;
}

.card.bg-primary:hover, .card.bg-success:hover, .card.bg-warning:hover, .card.bg-info:hover {
  transform: scale(1.03);
}

/* Alert banners for DLP test pages */
.alert-danger .bi-shield-exclamation {
  font-size: 1.1em;
}

/* Footer */
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #fff !important;
}

/* Form styling improvements */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Table improvements */
.table .font-monospace {
  letter-spacing: 1px;
}

/* Badge improvements */
.badge {
  font-weight: 500;
}

/* Breadcrumb styling */
.breadcrumb {
  background: none;
  padding: 0;
}
