/* Base styles */
* {
  font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
  display: none;
}

/* Component specific styles */
.highlighted-section {
  outline: 2px solid #3F20FB;
  background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
  position: absolute;
  z-index: 1000;
}
#simulation {
  max-width: 1200px; /* Set a maximum width for the section */
  margin: 40px auto; /* Center the section with auto margins */
  padding: 20px; /* Add padding for inner space */
  background-color: rgba(255, 255, 255, 0.9); /* Light background color */
  border-radius: 15px; /* Rounded corners for the bubble effect */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Import other CSS files */
@import 'theme.css';
@import 'dark-theme.css'; 