/* src/components/info-card/info-card.css */
:host {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  background-color: var(--bg-primary);
  /* width: 100%; */
}

.content {
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.description {
  font-size: 12px;
  color: #666;
}

.info {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #e0f7da;
  color: #2e7d32;
}
