.cbe-wrap {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
}
.cbe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cbe-form label, .cbe-filter-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}
.cbe-form input, .cbe-form select, .cbe-form textarea, .cbe-filter-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
}
.cbe-button {
  margin-top: 15px;
  padding: 11px 18px;
  border: 0;
  border-radius: 8px;
  background: #1f2937;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}
.cbe-summary-box {
  background: #f5f7fb;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 12px 0 18px;
}
.cbe-alert {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.cbe-alert-success { background: #e8f8ee; color: #166534; }
.cbe-alert-warning { background: #fff7e6; color: #92400e; }
.cbe-alert-error { background: #fee2e2; color: #991b1b; }
.cbe-table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}
.cbe-table {
  width: 100%;
  border-collapse: collapse;
}
.cbe-table th, .cbe-table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
}
.cbe-table th {
  background: #f9fafb;
}
.cbe-icon-button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #f3f4f6;
}
.cbe-admin-filter {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 15px 0;
}
.cbe-admin-table input[type="number"] { max-width: 120px; }
@media (max-width: 700px) {
  .cbe-grid { grid-template-columns: 1fr; }
  .cbe-wrap { padding: 14px; }
}
.cbe-help-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-top: 2px;
}
.cbe-icon-button + .cbe-icon-button { margin-left: 6px; }
.cbe-admin-filter input[type="text"], .cbe-admin-filter input[type="number"] {
  padding: 7px 10px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
}
.cbe-admin-table input[type="text"] { width: 100%; max-width: 360px; }
