/* General Page */
body {
  font-family: Arial, sans-serif;
  background: #1e1e1e;
  color: #e0e0e0;
  padding: 20px;
  text-align: center;
  width: 80%;
  margin: auto;
}

/* Title */
h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #7bd35a;
  text-shadow: 0 0 8px #3a7d29;
}

/* Section Titles */
h2 {
  color: #9cdcfe;
  margin-top: 25px;
}

/* File Input */
input[type="file"] {
  padding: 10px;
  background: #333;
  border: 2px solid #555;
  color: #ccc;
  cursor: pointer;
  border-radius: 6px;
}

input[type="file"]::-webkit-file-upload-button {
  background: #4caf50;
  border: none;
  padding: 8px 15px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

/* Convert Button */
button {
  background: #4caf50;
  color: white;
  padding: 12px 24px;
  border: none;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.2s ease;
}

button:hover {
  background: #45a049;
}

/* Wool List */
pre {
  background: #111;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #333;
  color: #9cdcfe;
  display: inline-block;
  text-align: left;
  max-width: 600px;
  font-size: 15px;
}

/* Output Image */
#result {
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

/* Drag-and-Drop Overlay */
#dropOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  color: #7bd35a;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
  text-shadow: 0 0 12px #3a7d29;
}

#dropOverlay.active {
  opacity: 1;
}
.content {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.top-half {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: space-around;
}
#wool-holder,
#output-holder {
  display: none;
}
@media only screen and(max-width: 1000px) {
  .content {
    flex-direction: column !important;
  }
}
