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

body {
  background-color: #18191A;
  color: #E4E6EB;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Custom Scrollbar for a more integrated look */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #242526;
}

::-webkit-scrollbar-thumb {
  background: #3A3B3C;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4E4F50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

h1 {
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
  color: #E4E6EB;
}

.processing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-height: 60vh;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 16px;
  color: #B0B3B8;
  font-size: 0.9em;
}

@media (max-width: 900px) {
  .processing-grid {
    grid-template-columns: 1fr;
  }
}
.io-box {
  display: flex;
  flex-direction: column;
  background-color: #242526;
  border-radius: 6px;
  border: 1px solid #3E4042;
  padding: 16px;
}

.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.box-header h2 {
  font-weight: 500;
  font-size: 1.2em;
}

.button-group {
  display: flex;
  gap: 8px;
}

button {
  background-color: #3A3B3C;
  color: #E4E6EB;
  border: 1px solid #3E4042;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background-color 0.2s ease;
}
button:hover {
  background-color: #4E4F50;
}
button.btn-primary {
  background-color: #3578E5;
  border-color: #3578E5;
}
button.btn-primary:hover {
  opacity: 0.9;
}

textarea {
  flex-grow: 1;
  width: 100%;
  background-color: #18191A;
  color: #E4E6EB;
  border: 1px solid #3E4042;
  border-radius: 6px;
  padding: 12px;
  font-family: inherit;
  font-size: 1em;
  resize: none;
}
textarea:focus {
  outline: none;
  border-color: #3578E5;
  box-shadow: 0 0 0 2px rgba(53, 120, 229, 0.5);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: #242526;
  padding: 32px;
  border-radius: 6px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border: 1px solid #3E4042;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 2em;
  color: #B0B3B8;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
}
.modal-close:hover {
  color: #E4E6EB;
}

.drop-zone {
  border: 2px dashed #3E4042;
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  color: #B0B3B8;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.drop-zone.drag-over {
  border-color: #3578E5;
  background-color: rgba(53, 120, 229, 0.1);
}
.drop-zone p {
  margin-bottom: 16px;
}

.progress-container {
  margin-top: 16px;
}
.progress-container p {
  margin-bottom: 8px;
  font-size: 0.9em;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background-color: #3A3B3C;
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 0;
  height: 100%;
  background-color: #3578E5;
  transition: width 0.3s ease-out;
}

#progress-percent {
  text-align: center;
  font-weight: 500;
  margin-top: 8px;
}

.modal-note {
  margin-top: 16px;
  font-size: 0.85em;
  color: #B0B3B8;
  text-align: center;
}/*# sourceMappingURL=style.css.map */