.bcf-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.bcf-card h2 {
  margin-bottom: 15px;
}

.bcf-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 10px;
}

.bcf-filters input,
.bcf-filters select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

#searchBtn {
  background: linear-gradient(45deg,#2563eb,#3b82f6);
  color: white;
  font-weight: bold;
}

/* TABLE DESIGN */
.bcf-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.bcf-table th {
  background: #2563eb;
  color: white;
  padding: 10px;
}

.bcf-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.bcf-table tr:hover {
  background: #f1f5f9;
}