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

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #2c2f33;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.main-container {
  width: 90vw;
  max-width: 1200px;
  padding: 20px;
  border-radius: 10px;
  background-color: #23272a;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  overflow: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header h1 {
  color: #ffffff;
  font-weight: 600;
}

.status {
  font-size: 14px;
}

.row {
  display: flex;
  gap: 20px;
}

.canvas-column {
  width: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-panel {
  width: 20%;
  background-color: #2f3136;
  padding: 15px;
  border-radius: 8px;
  overflow-y: auto;
}

h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Canvas Styling */
canvas {
  background-color: #1e2228;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* Button Styling */
button {
  background-color: #7289da;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 10px;
  width: 100%;
}

button:hover {
  background-color: #5a6bb2;
  transform: translateY(-3px);
}

button:active {
  transform: translateY(0);
}

/* Input and Label Styling */
input[type="checkbox"] {
  accent-color: #7289da;
}

label {
  margin-left: 8px;
  font-size: 14px;
}