body {
  font-family: 'Source Code Pro', monospace;
  background-color: #ffffff;
  color: #212529;
}

.no-scroll {
  overflow: hidden;
}

#editorZone.is-expanded {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 60;
  margin: 0;
}

#editorZone.is-expanded .table-container {
  max-height: none;
}

.brutal-border {
  border: 4px solid #212529;
}

.brutal-border-t {
  border-top: 4px solid #212529;
}

.brutal-border-b {
  border-bottom: 4px solid #212529;
}

.brutal-border-r {
  border-right: 4px solid #212529;
}

.brutal-border-l {
  border-left: 4px solid #212529;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  border-width: 4px;
  border-style: solid;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  background: #0d6efd;
  border-color: #212529;
}

.action-btn:hover {
  background: #0a58ca;
  border-color: #212529;
}

.action-btn--download {
  background: #198754;
  border-color: #212529;
}

.action-btn--download:hover {
  background: #146c43;
  border-color: #212529;
}

.action-btn--outline {
  background: #ffffff;
  color: #212529;
  border-color: #212529;
}

.action-btn--outline:hover {
  background: #0d6efd;
  color: #ffffff;
  border-color: #212529;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #212529;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 0;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.icon-btn:hover {
  color: #ffffff;
  background: #212529;
  border-color: #212529;
}

.table-container {
  max-height: 60vh;
}

.table-container::-webkit-scrollbar {
  height: 14px;
  width: 14px;
}

.table-container::-webkit-scrollbar-track {
  background: #ffffff;
  border-top: 4px solid #212529;
  border-left: 4px solid #212529;
}

.table-container::-webkit-scrollbar-thumb {
  background: #212529;
  border: 2px solid #ffffff;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

.brutal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.brutal-table th {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f8f9fa;
}

.brutal-table th,
.brutal-table td {
  border-right: 4px solid #212529;
  border-bottom: 4px solid #212529;
}

.brutal-table th:last-child,
.brutal-table td:last-child {
  border-right: none;
}



[contenteditable="true"] {
  outline: none;
  padding: 8px;
  min-width: 60px;
  display: inline-block;
  background: transparent;
  transition: background-color 0.2s;
}

[contenteditable="true"]:hover {
  background-color: rgba(13, 110, 253, 0.08);
}

[contenteditable="true"]:focus {
  background-color: #ffffff;
  box-shadow: inset 0 0 0 4px #0d6efd;
}

.drag-active {
  background-color: #e9ecef !important;
  border-color: #0d6efd !important;
  color: #0d6efd !important;
}

.info-dialog {
  border: 4px solid #212529;
  padding: 1rem;
  background: #ffffff;
  color: #212529;
  font-weight: 700;
  box-shadow: 8px 8px 0px #212529;
}

.error-dialog {
  border: 4px solid #212529;
  background: #ffdfdf;
  color: #212529;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 6px 6px 0px #212529;
}

.input-textarea {
  font-family: 'Source Code Pro', monospace;
  border: 4px solid #212529;
  background-color: #f8f9fa;
  color: #212529;
  outline: none;
}

.font-mono {
  font-family: 'Source Code Pro', monospace !important;
}

.input-textarea:focus {
  background-color: #ffffff;
  border-color: #0d6efd;
}
