/* General styles */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px; 
}

footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #b3b3b3;
}

/* Header */
h2 {
  color: #bb86fc;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Labels and Input fields */
label {
  display: block;
  margin-bottom: 10px;
  color: #e0e0e0;
}

input[type="file"] {
  color: #bb86fc;
}

input[type="number"] {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #333;
  color: #e0e0e0;
}

/* Display boxes */
#resolutionDisplay, #scaleContainer {
  margin-top: 15px;
  padding: 10px;
  background-color: #222;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #b3b3b3;
}

#originalResolution, #scaledResolution {
  font-weight: bold;
  color: #ffffff;
}

/* Download button */
#downloadButton {
  display: block;
  margin: 15px auto 0;  /* Centers the button horizontally */
  padding: 10px 15px;
  background-color: #bb86fc;
  color: #121212;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
#downloadButton:hover {
  background-color: #7b61ff;
}

/* Hidden canvas */
canvas {
  display: none;
}
