/* CSS para Shortcode Budget Preview */
.budget-list p {
  padding: 0;
  margin: 0;
}

.budget-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.budget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
}

.budget-item:hover {
  border: 1px solid #d5d5d5;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.06);
}

.budget-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.budget-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.budget-info a:hover {
  text-decoration: underline;
}

.budget-meta-name {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.budget-title .budget-name {
  font-weight: 600;
  color: #212121;
}

.budget-meta-description {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
}

.budget-qty {
  font-weight: 500;
}

.budget-item-qty {
  border: 1px solid #bdbcbc !important;
  background-color: #fcfcfc;
  color: #212121;
  font-weight: 500;
  width: 80px !important;
  font-size: 14px;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  outline: none;
}

.budget-item-qty:focus {
  border-color: #747474 !important;
}

.remove-item-btn {
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  opacity: 0.6;
}

.remove-item-btn:hover {
  background-color: transparent;
  opacity: 1;
}
