/* components/buttons.css */

.btn {
  height: 40px;
  padding: 0 1rem;
  border-radius: 8px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--text-main);
}

.btn:hover {
  opacity: 0.9;
}

/* Icon button */

.icon-btn {
  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--gray-200);
}

/* BOTTOM */
.footer-bottom {
  max-width: 1440px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}