/* LFSR Random Number Generator Scoped Styles */
.lfsr-generator {
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.lfsr-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.lfsr-seed,
.lfsr-length,
.lfsr-result {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  text-align: center;
}

.lfsr-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.lfsr-btn {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lfsr-btn:hover {
  background-color: #45a049;
}

.lfsr-output h3 {
  text-align: left;
  margin-bottom: 8px;
  color: #333;
}

@media (max-width: 600px) {
  .lfsr-btn { flex: 1 1 100%; }
}
