/* ui-components.css */
p, li {
  padding-bottom: 1rem;
}

/* Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  cursor: pointer;
}

.button:hover {
  background-color: #999;
}

.button:disabled {
  background-color: #aaa;
  color: #666;
  cursor: not-allowed;
}

.button--ghost {
  background-color: transparent;
  border: none;
  color: hsl(var(--foreground));
}

.button--ghost:hover {
  background-color: hsl(var(--muted) / 0.1);
}

.button--outline {
  background-color: transparent;
  border: 1px solid #8d8d8d;
  color: #000;
}

.button--outline:hover {
  background-color: #fafafa;
}

.button--icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

.button--full {
  width: 100%;
  width: calc(100% - 2rem);
  margin: 1rem;  
}

button {
  cursor: pointer;
}

h4 {
  padding-bottom: 1rem;
}

/* Card */
.card {
  background-color: #fbfbfb;
  color: #000;
  border-radius: var(--radius);
  border: 1px solid #aaa;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card-content {
  padding: 1.5rem;
}

.card-footer {
  padding: 1.5rem;
  padding-top: 0;
}


.input, .textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #000;
  border-radius: var(--radius);
  background-color: #fbfbfb;
  color: #000;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input:focus, .textarea:focus{
  outline: none;
  box-shadow: 0 0 0 2px #ddd;
  background-color: #fff;
}

.textarea {
  resize: vertical;
}

