.card-header-mesa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.mesa-title {
  font-size: 22px;
  font-weight: 600;
  color: #4b3f35;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mesa-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer {
  font-size: 15px;
  font-weight: 600;
  color: #b45309; /* ámbar = urgencia */
  background: #fff7ed;
  padding: 6px 10px;
  border-radius: 10px;
}

.btn-limpiar {
  padding: 6px 10px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 576px) {
  .card-header-mesa {
    flex-direction: column;
    align-items: flex-start;
  }

  .mesa-actions {
    width: 100%;
    justify-content: space-between;
  }
}
