* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f4f6f8;
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nwc-header {
  background-color: #ffffff;
  border-bottom: 3px solid #00857c;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.nwc-header .brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nwc-header .brand-group svg {
  width: 40px;
  height: 40px;
}
.nwc-header .brand-group h1 {
  font-size: 20px;
  font-weight: 700;
  color: #112233;
  letter-spacing: -0.3px;
}
.nwc-header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nwc-banner {
  background-color: #e6f4f3;
  color: #00857c;
  padding: 10px 32px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 133, 124, 0.15);
}

.nwc-container {
  max-width: 1400px;
  margin: 24px auto;
  padding: 0 24px;
  width: 100%;
  flex: 1;
}

.action-toolbar {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.action-toolbar .toolbar-right, .action-toolbar .toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nwc-btn {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #1f2937;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.nwc-btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.nwc-btn.btn-primary {
  background-color: #00857c;
  color: #ffffff;
  border-color: #00857c;
}
.nwc-btn.btn-primary:hover {
  background-color: #006d64;
  border-color: #006d64;
}
.nwc-btn.btn-export {
  background-color: #112233;
  color: #ffffff;
  border-color: #112233;
}
.nwc-btn.btn-export:hover {
  background-color: #1a365d;
  border-color: #1a365d;
}
.nwc-btn.btn-danger {
  color: #dc2626;
  border-color: #fca5a5;
}
.nwc-btn.btn-danger:hover {
  background-color: #fef2f2;
  border-color: #dc2626;
}

select.nwc-btn {
  appearance: none;
  padding-left: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  cursor: pointer;
}

input[type=file] {
  display: none;
}

.data-panel {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.data-panel .panel-header {
  padding: 14px 20px;
  background-color: #f9fafb;
  border-bottom: 1px solid #d1d5db;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data-panel .panel-header .record-total {
  font-size: 13px;
  font-weight: 700;
  color: #112233;
}
.data-panel .panel-header .edit-instruction {
  font-size: 12px;
  color: #6b7280;
}
.data-panel .table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  white-space: nowrap;
}
table thead th {
  text-align: right;
  font-weight: 600;
  color: #6b7280;
  background-color: #f8fafc;
  padding: 12px 16px;
  border-bottom: 1px solid #d1d5db;
}
table tbody td {
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 16px;
  vertical-align: middle;
  color: #1f2937;
}
table tbody td[contenteditable=true]:focus {
  outline: 2px solid #00b0ff;
  outline-offset: -1px;
  background-color: #ffffff;
}
table tbody tr:last-child td {
  border-bottom: none;
}
table tbody tr:hover {
  background-color: #fbfbfc;
}

.index-col {
  font-family: monospace;
  color: #6b7280;
  text-align: center;
}

.delete-row-btn {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
}
.delete-row-btn:hover {
  color: #dc2626;
  background-color: #fee2e2;
}

.empty-notice {
  text-align: center;
  padding: 48px 20px;
  color: #6b7280;
  font-size: 13.5px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #112233;
  font-weight: 600;
}
.status-indicator .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00857c;
  animation: blink 1s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.error-alert {
  margin-top: 16px;
  border: 1px solid #fca5a5;
  color: #dc2626;
  background-color: #fef2f2;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 6px;
}

/*# sourceMappingURL=style.css.map */
