.bevu-notes-box {
  background-color: #faf9f7;
  border: 1px solid #eee;
  padding bottom: 5px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
  border-radius: 14px;
  margin-top: 24px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.bevu-notes-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.bevu-note-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  min-height: 60px;
  line-height: 1.3;
  transition: all 0.3s ease;
  height: 100%;
}

.bevu-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}


.bevu-note-item img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
}

.bevu-notes-hidden {
  display: none;
  margin-top: 12px;
}

.bevu-notes-toggle {
  margin-top: 18px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bevu-notes-toggle:hover {
  background-color: #222;
}
