:root {
  --smt-primary: #1d2327;
  --smt-primary-contrast: #ffffff;
  --smt-accent: #eef2f7;
  --smt-border: #e2e2e2;
}

.smt-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
}

.smt-section {
  border: 1px solid var(--smt-border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fff;
}

.smt-section h2,
.smt-section h3 {
  margin: 0 0 12px;
}

.smt-field {
  margin-bottom: 12px;
}

.smt-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.smt-field input[type="text"],
.smt-field input[type="email"],
.smt-field input[type="date"],
.smt-field select,
.smt-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  box-sizing: border-box;
}

.smt-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.smt-inline .smt-field {
  flex: 1 1 220px;
}

.smt-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.smt-button {
  display: inline-block;
  padding: 8px 14px;
  background: var(--smt-primary);
  color: var(--smt-primary-contrast);
  border-radius: 6px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.smt-button.secondary {
  background: #4a4a4a;
}

.smt-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.smt-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.smt-card {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fafafa;
}

.smt-muted {
  color: #666;
  font-size: 13px;
}

.smt-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--smt-accent);
  font-size: 12px;
  margin-left: 6px;
}

.smt-empty {
  padding: 12px;
  border: 1px dashed #d0d0d0;
  border-radius: 6px;
  color: #666;
  background: #fcfcfc;
}

.smt-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 12px;
}

.smt-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.smt-table th,
.smt-table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.smt-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.smt-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.smt-job-grid-wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.smt-job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.smt-job-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 14px;
  background: #fafafa;
}

.smt-status-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.smt-status-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0f0f0;
  font-size: 12px;
}

.smt-status-complete {
  background: #d8f4e5;
  color: #1b6c54;
}

.smt-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.smt-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.smt-checklist-check {
  font-size: 14px;
}

.smt-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
