body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

.logo-container {
  text-align: center;
  margin-bottom: 15px;
}

.logo {
  max-width: 200px;
  height: auto;
}

.flipnote-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: fit-content;
}

#flipnoteCanvas {
  border: 2px solid #333;
  background: white;
  cursor: crosshair;
}

.toolbar {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.tool {
  padding: 5px 10px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.tool.active {
  background: #e0e0e0;
}

button {
  padding: 5px 10px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button:hover {
  background: #f0f0f0;
}

#frameCounter {
  margin-left: auto;
}

.tips {
  margin-top: 15px;
  padding: 10px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
}

#toggleGuides {
  background-color: #f0f0f0;
}

#toggleGuides:hover {
  background-color: #e0e0e0;
}

#playAnimation {
  font-size: 18px;
  padding: 5px 15px;
}