:root {
  --bg: #f5f1ea;
  --bg-2: #efe6dc;
  --card: #e7dccf;
  --border: #d2c2b2;
  --text: #3e3a33;
  --accent: #8b5e3c;
}

body {
  background: linear-gradient(to bottom, var(--bg), var(--bg-2));
}

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

.badge {
  font-weight: 500;
}

.text-muted {
  color: #6b625c !important;
}

.btn-earth {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-payed:hover {
  background-color: #1c6710;
  border-color: var(--accent);
  color: #fff;
}

.btn-payed {
  background-color: #20940e;
  border-color: var(--accent);
  color: #fff;
}

/* hover */
.btn-earth:hover {
  background-color: #6f4a2f;
  border-color: #6f4a2f;
  color: #fff;
}

/* active (CLICK state) */
.btn-earth:active,
.btn-earth.active {
  background-color: #6f4a2f !important;
  border-color: #6f4a2f !important;
  color: #fff !important;
}

/* focus (keyboard click / click outline state) */
.btn-earth:focus,
.btn-earth:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(139, 94, 60, 0.3);
}

.atelier-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.atelier-img:hover {
  transform: scale(1.02);
  transition: 0.2s ease;
}

.table-earth {
  background-color: #e7dccf;
  border: 1px solid #d2c2b2;
  color: #3e3a33;
  border-radius: 8px;
  overflow: hidden;
}

.table-earth thead {
  background-color: #f5f1ea;
  color: #3e3a33;
  border-bottom: 1px solid #d2c2b2;
}

.table-earth tbody tr {
  border-color: #d2c2b2;
}

.table-earth tbody tr:hover {
  background-color: #efe6dc;
  transition: 0.15s ease;
}

.badge-status {
  padding: 0.4em 0.7em;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.75rem;
}

.status-requested {
  background-color: #efe6dc;
  color: #6f4a2f;
  border: 1px solid #d2c2b2;
}

.status-confirmed {
  background-color: #e7f138;
  color: #2e412b;
  border: 1px solid #b9c9b4;
}

.status-cancelled {
  background-color: #ead6d2;
  color: #6a3d3a;
  border: 1px solid #d2a9a3;
}

.status-payed {
  background-color: #20940e;
  color: #3a453a;
  border: 1px solid #d2a9a3;
}

.info-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.label {
    width: 100px;   /* aligns all labels */
    font-weight: 500;
}

.value {
    color: var(--text);
}
