/*
 * This is a manifest file that'll be compiled into application.css.
 */

[x-cloak] { 
  display: none !important; 
}

.campo-container {
  width: 400px;
  border: 1px solid #ccc;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 40px;
}
.campo {
  border: none;
  flex: 1;
  min-width: 50px;
  font-size: 16px;
  padding: 5px;
  outline: none;
}
.tag {
  background-color: #e0e0e0;
  border-radius: 20px;
  padding: 5px 10px;
  margin: 2px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.tag button {
  margin-left: 5px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: bold;
}
.sugerencias {
  margin-top: 5px;
  border: 1px solid #ccc;
  width: 400px;
  max-height: 150px;
  overflow-y: auto;
  padding: 0;
  list-style: none;
  position: absolute;
  background: white;
  z-index: 1000;
}
.sugerencias li {
  padding: 10px;
  cursor: pointer;
}
.sugerencias li:hover {
  background-color: #f0f0f0;
}